Forum Discussion
gvg
8 years agoPost Prodigy
How to remove blank rows in a calculated table?
Hi, I have a calculated table made with SELECTCOLUMNS like this: mySales = DISTINCT(SELECTCOLUMNS( Sales,
"ProductID", Sales[ProductID],
...
- 8 years ago
May be this one
mySales = FILTER ( DISTINCT ( SELECTCOLUMNS ( Sales, "ProductID", Sales[ProductID], "Amount", Sales[Amount] ) ), NOT ( ISBLANK ( [Amount] ) ) )
Zubair_Muhammad
8 years agoCommunity Champion
May be this one
mySales =
FILTER (
DISTINCT (
SELECTCOLUMNS ( Sales, "ProductID", Sales[ProductID], "Amount", Sales[Amount] )
),
NOT ( ISBLANK ( [Amount] ) )
)AlakarHarijan1
7 years agoFrequent Visitor
Hi Bro,
Your reply was very usefull for me, I've made my table. Just a little more to add.
After making the custom table i just want to summarize one of the column, can you please help me on this.
Thank you so much.