Forum Discussion
Variable Table with a range filter
Hi,
i try to create a variable table with a range of items by totalorder measure.
But it doesn't seem to work.
it doesn't seem to work
VAR Artbetween50_100 =
FILTER(all(table[CodArt]); [TotalOrder]>=50 || [TotalOrder]<100 )
Thank you
Hi Bene ,
You can use these expressions to make the table as a variable.
CALCULATETABLE; SUMMARIZE; SUMMARIZECOLUMNS; SELECTCOLUMNS; ADDCOLUMNS.
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
3 Replies
- MariuszCommunity Champion
- amitchandakSuper User
Try like
calculatetable(table,FILTER(all(table[CodArt]); [TotalOrder]>=50 || [TotalOrder]<100 )) - V-lianl-msftCommunity Support
Hi Bene ,
You can use these expressions to make the table as a variable.
CALCULATETABLE; SUMMARIZE; SUMMARIZECOLUMNS; SELECTCOLUMNS; ADDCOLUMNS.
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.