Forum Discussion

NickProp28's avatar
NickProp28
Post Partisan
5 years ago
Solved

Needs historic data + refresh data

Dear Community,    I have been creating a report which needs to show the whole status for the products. For example raw data during the week 1.   During the week 2, after I refresh the raw...
  • v-henryk-mstf's avatar
    v-henryk-mstf
    4 years ago

    Hi NickProp28 ,

     

    According to your description, similar results may not be achieved in powerbi. In powerbi, the best way is to continuously update the status results and keep records in the form of rows. Then create a column and use the CONCATENATEX function to show the entire change process in the card visual. If it is only updated in the original row, it will not be saved.

    just like:

    Col = 
    CALCULATE (
        CONCATENATEX (  'Table','Table'[Status]  , "->" ),
        ALLEXCEPT ( 'Table', 'Table'[Product] )
    )

     


    Best Regards,
    Henry


    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.