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.
Hi all,
I put several measure in a table visual and count of TotalSum in card visual like following graph.
table is filtered with totalSum>0 as well as date
measure TotalSum = [Charge factorN]+[Deep DischargeN]+[MinVoltageN]+[Voltage diffN]+[DischargeAhN]+[DoDoverboundaryN]
I count number of TotalSum as well and put in card visual. other filter conditiona is same with table visual. the code is as following
what could cause the difference?
Thanks in advance
Solved! Go to Solution.
Hi @reynold522 ,
According to your case description, you first create a measure [TotalSum] to calculate as the sum of the other five measures, and then use the Sumx() function and use the Values() function inside to give your measure [TotalSum] in the context created separately for the column 'RUAN_GLOBALMATIX_TRACKSHEET_L_V' [XTCU_ID_NUMBER] Came to make an If judgment and counted.
Since the five measures you referenced in the measure [TotalSum] are not provided, my current judgment on the root cause of the problem seems to be related to the up and down questions built in your Sumx() function, because your table visual has two dimension columns. If convenient, you can try using the Summarize() function to build the context of two dimension columns, like this:
## of Notifications =
VAR _value =
SUMX (
SUMMARIZE ( 'RUAN_GLOBALMATIX_TRACKSHEET_L_V', [XTCU_ID_NUMBER], [REGION] ),
IF ( [TotalSum] > 0, 1, 0 )
)
RETURN
IF ( _Value = BLANK (), 0, _Value )
Then look at the output value, if there is still a problem, please upload your .pbix file with this problem (does not contain sensitive data).
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @reynold522 ,
According to your case description, you first create a measure [TotalSum] to calculate as the sum of the other five measures, and then use the Sumx() function and use the Values() function inside to give your measure [TotalSum] in the context created separately for the column 'RUAN_GLOBALMATIX_TRACKSHEET_L_V' [XTCU_ID_NUMBER] Came to make an If judgment and counted.
Since the five measures you referenced in the measure [TotalSum] are not provided, my current judgment on the root cause of the problem seems to be related to the up and down questions built in your Sumx() function, because your table visual has two dimension columns. If convenient, you can try using the Summarize() function to build the context of two dimension columns, like this:
## of Notifications =
VAR _value =
SUMX (
SUMMARIZE ( 'RUAN_GLOBALMATIX_TRACKSHEET_L_V', [XTCU_ID_NUMBER], [REGION] ),
IF ( [TotalSum] > 0, 1, 0 )
)
RETURN
IF ( _Value = BLANK (), 0, _Value )
Then look at the output value, if there is still a problem, please upload your .pbix file with this problem (does not contain sensitive data).
Best Regards,
Neeko Tang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
@reynold522 , Change return like
Sumx(summarize(Table, Table[XCTU_ID_NUMBER], Table[REgion], "_1", calculate(IF( _Value= BLANK(), 0, _Value))), [_1])
this code dont work, thank you anyway