Forum Discussion
Maahmohammed
Helper I
1 year agoMeasure & Calculated filed
Dears, I have the below table & I'd like to have a measure & a calculated column code to get the count of invoices / Customers / Day Appreciating your support. Invoice No. Date Item Custome...
- 1 year ago
Try this:
CountInvoicesColumn =
CALCULATE(
DISTINCTCOUNT('Table'[Invoice No.]),
ALLEXCEPT('Table', 'Table'[Date], 'Table'[Customer ID])
) - 1 year ago
Hi Maahmohammed ,
You can create a measure to calculate DISTINCT invoices by this DAX:InvoiceCountMeasure = CALCULATE( DISTINCTCOUNT('YourTable'[Invoice No.]), ALLEXCEPT('YourTable', 'YourTable'[Customer ID], 'YourTable'[Date]) )You result will look like this:
Shravan133
Super User
1 year agowhats your expected output?