Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
8 years ago
Solved

Calculating first order date for by account

hi i have many rows of sales data which lists the account number, the order number (can be multiple order numbers for the same custome rand duplicated order numbers for the same customer). there is a...
  • Zubair_Muhammad's avatar
    8 years ago

    Hi Anonymous

     

    Try this

     

    =
    CALCULATE (
        MIN ( TableName[OrderDate] ),
        ALLEXCEPT ( TableName, TableName[Account number] )
    )