Forum Discussion
newpi
5 years agoHelper V
create a summarized table with unique calculated values.
I have a table as follows. account ID computer name computer version available or not (1 or 0 values) 123 F1 1.1 1 123 F1 1.0 1 123 F2 1.1 1 I want to create a c...
- 5 years ago
Hi newpi ,
Try this:
Table 2 = SUMMARIZE ( 'Table', 'Table'[account ID], 'Table'[computer name], "total computers available by acctid", CALCULATE ( DISTINCTCOUNT ( 'Table'[computer name] ), ALLEXCEPT ( 'Table', 'Table'[account ID] ) ) )Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
newpi
5 years agoHelper V
amitchandak F2 is a typo. Should be 1 . But, I've tried Summarize same as your formula and that didn't work. I want to create a table so that I can use columns as a filter on page. Also, that table has date so if I can use Max(Date) or something to take only max of the values but dint figure out the formula.
V-lianl-msft
5 years agoCommunity Support
Hi newpi ,
Try this:
Table 2 =
SUMMARIZE (
'Table',
'Table'[account ID],
'Table'[computer name],
"total computers available by acctid",
CALCULATE (
DISTINCTCOUNT ( 'Table'[computer name] ),
ALLEXCEPT ( 'Table', 'Table'[account ID] )
)
)
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.