Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
Please how do i sum up the columns in yellow? the total is coming up as the total of 1997(201 and 63) instead of the entire sum from 1981. The column numbers were derived from a formula, the columns DO NOT appear on the table.
Solved! Go to Solution.
hi @Vizbaby ,
Try creating the measure below and replace with the table name in the model:
Sumx over years =
SUMX(
VALUES('ALLYEARVALUETABLE'[ALLYEAR]),
[ActiveMembersCount]
)
if this doesn't resolve the issue, please provide a sample input masking sensitive data
Youre amazing. Thank You🙌
hi @Vizbaby ,
Try creating the measure below and replace with the table name in the model:
Sumx over years =
SUMX(
VALUES('ALLYEARVALUETABLE'[ALLYEAR]),
[ActiveMembersCount]
)
if this doesn't resolve the issue, please provide a sample input masking sensitive data