Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |