Forum Discussion

tomybre's avatar
tomybre
New Member
8 years ago
Solved

Ultimo valor de la tabla

  Como hago para que en la pantalla negra me aparezca el ultimo valor de la tabla?   Saludos.
  • Vvelarde's avatar
    Vvelarde
    8 years ago

    tomybre

     

    Hi you can use a measure:

     

     

    PriceLastDate =
    IF (
        HASONEVALUE ( Table1[Currency] );
        CALCULATE ( AVERAGE ( Table1[Price] ); LASTDATE ( Table1[Date] ) );
        UNICHAR ( 10 )
    )

     

    Select in the slicer the currency and Ready.

     

    Regards

    Victor

    Lima - Peru