Forum Discussion
Anonymous
3 years agoNot applicable
DAX Measure Suggestion
Hi, I am trying to build a DAX Measure for Count of number of companies has been created after the first invoice We have invoice creation date(Invoice_Create Date)column and company establish...
amitchandak
Super User
3 years agoAnonymous ,
Assume they are from same table. try this measure
Countx(filter(Summarize(Table, Table[Company], "_1", Min(Table[Invoice_Creation Date]), "_2", Min(Table[Company_Create_Date]) ), [_2] >[_1]), [Company])
Anonymous
3 years agoNot applicable
I tried this measure,but not showing any Visual