Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Sign up nowGet Fabric certified for FREE! Don't miss your chance! Learn more
I'm trying to get the total number of status column ( complete, not complete, partial complete) and the values in column count, how do i place this in measure in PBI? Thanks for the help.
Solved! Go to Solution.
Try to create measures like below:
Sum of count = SUM('Table'[Count])
Percentage =
DIVIDE(
[Sum of count],
CALCULATE(SUM('Table'[Count]),ALLSELECTED('Table'))
)
Try to create measures like below:
Sum of count = SUM('Table'[Count])
Percentage =
DIVIDE(
[Sum of count],
CALCULATE(SUM('Table'[Count]),ALLSELECTED('Table'))
)
@jeje Basic syntax equivalent is SUMX(FILTER(...),...) or CALCULATE(SUM(...), FILTER(...))
Excel to DAX Translation - Microsoft Power BI Community
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 63 | |
| 62 | |
| 42 | |
| 19 | |
| 16 |
| User | Count |
|---|---|
| 118 | |
| 106 | |
| 38 | |
| 28 | |
| 27 |