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
Hi Amit,
Thank You for the response,
But How the company ID is relates to Country Code?
- Anonymous3 years agoNot applicable
Company Id, Country ID, COmpany Est Date and Invoice created date are belongs to same table.