Forum Discussion
David_1970
8 years agoFrequent Visitor
Creating measure
How do I return a table excluding all rows where [Revenue] is blank, see example below. Which DAX function? Customer Revenue Disbursement DateMonth 1 156 201701 2 365 18 20170...
- 8 years ago
Hi,
This can be done without a DAX formula. In Power Query, one can simply filter the revenue column on >0.
- 8 years ago
Hi David_1970
Please try this calculated table
NewTableName = FILTER(Table1, 'Table1'[Revenue]<> BLANK() ) - 8 years ago
Hi David_1970,
As I tested, the formula Phil_Seamark posted is right. Please click "New Table" under modeling on Home page(highlighted in yellow background), type the formula, you will get expected result.Table = FILTER(Table1,Table1[Revenue]<>BLANK())
Best Regards,
Angelia
CahabaData
8 years agoMemorable Member
NewTableName = SUMMARIZE(
FILTER(Table1,'Table1'[Field1]<> BLANK()),
'Table1'[Field1],
‘Table1’[Field2]
etc.
)