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.
I need show the total for the measure (calcular_qtd_lic_backup) , but i couldn't.
Thanks a lot
Solved! Go to Solution.
Hi @fabiofurlanbr ,
I could not understand your fields because of lack of data. But the reason that it happens is for the SELECTEDVALUE function.
Btw, to fix your problem, you can create a new measure below:
NewMeasure =
VAR _TABLEE =
ADDCOLUMNS ( 'TheTableyouwant', "@BackupMeasure", [calcular_qtd_lic_backup] )
RETURN
SUMX ( _TABLEE, [@BackupMeasure] )
For the 'TheTableyouwant' you have to insert your desired table. I think you need to use SUMMARIZE function to achieve sth that you have in your table visual.
Then it would give you the desired result.
If this answer solves your problem, give it a thumbs up and accept it as a solution so the others would find what they need easier.
Regards,
Loran
Hi @fabiofurlanbr ,
I could not understand your fields because of lack of data. But the reason that it happens is for the SELECTEDVALUE function.
Btw, to fix your problem, you can create a new measure below:
NewMeasure =
VAR _TABLEE =
ADDCOLUMNS ( 'TheTableyouwant', "@BackupMeasure", [calcular_qtd_lic_backup] )
RETURN
SUMX ( _TABLEE, [@BackupMeasure] )
For the 'TheTableyouwant' you have to insert your desired table. I think you need to use SUMMARIZE function to achieve sth that you have in your table visual.
Then it would give you the desired result.
If this answer solves your problem, give it a thumbs up and accept it as a solution so the others would find what they need easier.
Regards,
Loran
Thanks a lot , you're absolutely right, summarize function solved my problem.
Regards
User | Count |
---|---|
16 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
25 | |
13 | |
12 | |
8 | |
8 |