Hi,
You can track the cells having circular reference by going to Formula Tab > Formula Auditing Menu > Error Checking Drop down > Circular Reference.
If the status bar is showing only Circular Reference and no cell address, it means your active sheet does not contain any circular references...
Hi,
Try the following steps:
Go to Data Validation > Input Message Tab > Input Message (type your message here) > Check mark "Show input message when cell is selected".
Regards,
Hi,
Power Query Solution:
let
Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
Typed = Table.TransformColumnTypes(Source,{{"NAME", type text}, {"REPT", Int64.Type}}),
Repeated = Table.TransformColumns(Typed, {"REPT", each List.Numbers(_,_,0), type list}),
Expanded =...
Many Thanks Sachin for the the remembrance.
Currently I am not getting much time for the forum due to busy schedule in Ramadan.
Missing the forum.
Regards,
Hi,
Yes it was just a wild guess as I haven't seen your data.
If you can post a sample file, chances are high you may get more targeted answers.
Regards,
Hi,
Not sure, this is just a stab in the dark!
=IFERROR(1/(1/IF(ROWS(BH$2:BH2)<='Test Chart'!$BD$2,INDEX(INDIRECT(BH$1),SMALL(IF(SingleMulti='Test Chart'!$BC$2,ROW(SingleMulti)-ROW($AU$2)+1),ROWS(BH$2:BH2))),"")),"")
Regards,
Here is the list I found useful and frequently asked:
INDEX: An alternative to array (CSE) formulas:
https://excelxor.com/2014/09/01/index-an-alternative-to-array-cse-formulas/
MAXIF Non Array:
https://www.excelforum.com/tips-and-tutorials/817784-maxif-without-using-an-array-formula.htm...
Hi G,
Thank you so much for the explanation of these M Functions. PQ is so powerful tool, I will do more research on it.
The more I use (PQ / Excel), the more I learn. The more I learn, the more I realize, the less I know.
@ all,
Please accept my sincere gratitude for your help.
Regards,
Hi G,
Fantastic, that did the trick much faster.
I can see you have added custom column. Can you please explain your steps in Plain English (just for my learning purpose), as I am new to PQ and I am not getting this M language.
Thank you so much and have a great day.
Regards,
Hi Marc & Chihiro,
Both solutions are working great and doing the job in no time.
Thank you so much, Have a good day.
@Marc, your code is much shorter, and you are on time as always :)
Hi Asheesh and Hareesh,
Thank you guys. Both codes are working. I appreciate your time and help.
Take Care...
Hello Guys, Good day,
I am trying to split comma delimited data in column K & L and copy relevant data to new rows.
for Example K3 contains 50, 50 and L3 having 997795, 993795, I want to split both cells in 2 rows, so K3 should be 50 and remaining 50 along with all data in row 3 will be copied...