Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: CONCANTENATEX - Filter out blanks

I think you want something like this: =IF(COUNTROWS(filter(Table1,Table1[Course Ref]="NG1 Exam"&&Table1[Result]="PASS"))+COUNTROWS(filter(T...

3 years ago
Forum
Reply
RE: CONCANTENATEX - Filter out blanks

You can filter out the blanks using something like: =CONCATENATEX(FILTER(values(Table1[NG1 Mark]),Table1[NG1 Mark]<>BLANK()),Table1[NG1 Mark]...

3 years ago
Forum
Reply
RE: How to merge in Power Query multiple columns with multiple results in new lines?

You could use something like this: let Source = Excel.CurrentWorkbook(){[Name="source_table"]}[Content], #"Replaced Value1" = Table.ReplaceVal...

3 years ago
Forum
Reply
RE: How to add calculations to a pivot table?

You add the calculations as measures in the data model, not using MDX. The MDX only determines what level of detail is shown in the set but you can do...

3 years ago
Reply
RE: How to add calculations to a pivot table?

Add the fields you want calculated to the pivot table, then on the Pivot Table Tools, Analyze tab, use the 'Create set based on row items' option. Tha...

3 years ago
Reply
RE: Getting control when a character is entered in a cell

The worksheet_change event is triggered by changing a cell's contents manually. Given all your similar posts, it would probably make sense for you to ...

3 years ago
Forum
Reply
RE: How to add calculations to a pivot table?

This is an example of using a row set. I had to amend the MDX manually to make sure it will adjust if new products are added (which was not easy for m...

3 years ago
Reply
RE: How to add calculations to a pivot table?

If I understand you correctly, you could achieve that look with a row set by only showing the field for the totals row.

3 years ago
Reply
RE: Stack data into one column?

If you have the new Insider beta functions, it's actually even simpler: =SORT(TOCOL(A1:E6,1)) for example.

3 years ago
Reply
RE: Issue with Dates() when using formulae with named cell inside the ()

This happens when you copy between workbooks that have the same name defined in them. If you want to just accept the default option in the message box...

3 years ago
Reply
RE: Help with macro locating row number and using in cell location

You could use something like this: Sub Searchable_List() 'Execute search for nestable products Dim CalculatorDraft As Worksheet Dim Previou...

3 years ago
Forum
Reply
RE: Sum with Dynamic Column List

No problem - just wanted to mention it as an alternative. 🙂

3 years ago
Forum
Reply
RE: Sum with Dynamic Column List

With a list of matching column names, you can get the sum using something like: List.Sum(Record.ToList(Record.SelectFields(_, MatchingColumnNames))...

3 years ago
Forum
Reply
RE: Compile error having copied your "Display all...userform

Your Results control is a textbox, but should be a Listbox.

3 years ago
Forum
Reply
RE: Filter Function with Offset not working.

Try: =FILTER(Sheet1!$B$6:$AG$600,ISNUMBER(SEARCH($B$2,INDEX(Sheet1!$B$6:$AG$600,0,MATCH($B$1,Sheet1!$B$6:$AG$6,0)))))

3 years ago
Page 28 / 56