Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: [If InStr....or......or.....or.....or....etc... then] Short write VBA Code request

Should be: If InStr(1, "FRZ, FREEZER, FREZ, FRE, FREEZ, FR., FREEZETR, FZR, FRS, FEZ, FSD, FS ", cell.Value) > 0 Then

5 years ago
Forum
Reply
RE: CountA by Column Number

Hi Jerry, You can use the offset function: COUNTA(G:G) will be: COUNTA(Offset(A:A,0,Match(.....)-1) Note that using full columns is not great fo...

5 years ago
Reply
RE: Measure for Status of 'Complete' over multiple workbooks

Yes, you are right it is my Dimension table that is in the middle of the Star with the 1 attached. The dozen or so Fact tables are the many end of the...

5 years ago
Forum
Reply
RE: Measure for Status of 'Complete' over multiple workbooks

Dear friend, as mentioned in my first post, without seeing a sample file is hard to visualize your structure. It can be done in 5 minutes, but n...

5 years ago
Forum
Reply
RE: Pivoting of non numeric array

Hi Lloyd, The structure is different indeed, I doubt that you can get the result you want using PQ menu commands, you have to use the Advanced Edit...

5 years ago
Forum
Reply
RE: Measure for Status of 'Complete' over multiple workbooks

CALCULATE(COUNT(BusinessChange[AnyColumnWithoutBlanks],BusinessChange[Status]="Complete") Like in excel sheet formulas, a COUNT can be applied to a...

5 years ago
Forum
Reply
RE: Measure for Status of 'Complete' over multiple workbooks

Probably best to use a PowerPivot table to create this or should I use Dax? DAX is the language used in PowerPivot, they are not alternatives. ...

5 years ago
Forum
Reply
RE: Pivot Table Dynamic Filter Value from cell

Hi Paul, Select that cell, press Ctrl+T to create a table. You can load a table directly in Power Pivot, a named cell can be loaded through power q...

5 years ago
Forum
Reply
RE: Conditional days between dates (based on previous rows)

With the measure you mentioned, you should receive for Name 2 the date of 3 Jun 2015, the latest one for that Name. You need a second criteria, to ...

5 years ago
Forum
Reply
RE: Measure for Status of 'Complete' over multiple workbooks

Hi Francis, A simple measure should be able to count the completed ones: CALCULATE(COUNT(SourceTable[Measures]),SourceTable[Status]="Complete") ...

5 years ago
Forum
Reply
RE: Problem with Clipboard debug error during OnTime

Hi Daniel, A code should be able to run, even if you switch to a different user account to the same computer. I do this frequently, I keep code run...

5 years ago
Forum
Reply
RE: Create table that only shows differences between 2 tables

Hi Heleen, What you should have in mind is that each row in a table is a Record. If you add a new column, you can combine the current Record (ro...

5 years ago
Forum
Reply
RE: Speed up query

Hi Francis, Try Table.Buffer in the previous step. Also, try loading the #"ExchRate" table in memory before adding the column with Table.Buffer,...

5 years ago
Forum
Reply
RE: Getting value from another column according to last occurrence

Try with less files, see what happens. Try with a custom solution to get data from folder, the automatic process you have used has many issues and ...

5 years ago
Forum
Reply
RE: Combobox v DropDown list

Hi Mel, I understand what you need, but you also have to see things from our point of view. You are saying that: "For this I need to use a Comb...

5 years ago
Forum
Page 63 / 130