Forum Discussion

Ramps's avatar
Ramps
Helper I
8 years ago
Solved

Reporting by latest date

A Sales File has 4 fields Customer, Product, Quantity & Date. I know how to list Customer, Product and Latest Date. That is easy. Please explain how to produce a report using BI (not excel) of Cust...
  • Zubair_Muhammad's avatar
    8 years ago

    HI Ramps

     

    Sorry I was away for a while

     

    Another way could be to add a calculated column to identify the Last Date. Then you can filter by that

     

    LastDate =
    IF (
        TableName[Date]
            = CALCULATE (
                MAX ( TableName[Date] ),
                ALLEXCEPT ( TableName, TableName[Customer] )
            ),
        1
    )