The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello Friends
I need some help to get my total in column D to show as 2 and not 4
below is the formula I'm currently using which gives the correct count but not for the total.
Solved! Go to Solution.
Hi,
It is quite difficult without knowing how the data model looks like, but please try to write a new measure that looks something like below and add to the table visualization whether it suits your requirement.
Total fix measure: =
SUMX (
SUMMARIZE (
'FactTableName',
'CalendarTable'[columnname that contains A],
'TableName'[columnname that contains B]
),
[Chat by week measure]
)
Hi,
It is quite difficult without knowing how the data model looks like, but please try to write a new measure that looks something like below and add to the table visualization whether it suits your requirement.
Total fix measure: =
SUMX (
SUMMARIZE (
'FactTableName',
'CalendarTable'[columnname that contains A],
'TableName'[columnname that contains B]
),
[Chat by week measure]
)
@Anonymous Tried it out and it's not working giving me the same result
Hello @PBIX_COACH if column d is a measure
Just create a mew measure:
Correct value = IF(HASONEVALUE(Table[Column A],[measure of column D],SUMX(VALUES(Table[Column A]),[measure of column D]))
User | Count |
---|---|
25 | |
10 | |
8 | |
7 | |
6 |
User | Count |
---|---|
32 | |
12 | |
10 | |
10 | |
9 |