Forum Discussion
clauvera
8 years agoRegular Visitor
Put a value from a table visualization in a card visualization
Hi, I'm new in the Power BI world, so I need your help, I have a table visualization, but I would like to extract a value from there and put it in a card visualization. For example: I have...
clauvera
8 years agoRegular Visitor
Hi,
you can download the PBI from this direction.
https://www.dropbox.com/sh/8alrnjx588em5fr/AAA10O4Qo22W19aENaN6XqFCa?dl=0
Thanks.
Vvelarde
8 years agoCommunity Champion
Hi, try with this:
Medida2 =
VAR SummarizeTable =
SUMMARIZE (
BASE;
BASE[GERENCIA NACIONAL BENEFICIARIA];
"Horas"; SUM ( BASE[HORAS TI] )
)
VAR Top1 =
CALCULATE (
VALUES ( BASE[GERENCIA NACIONAL BENEFICIARIA] );
TOPN ( 1; SummarizeTable; [Horas]; DESC )
)
RETURN
Top1