Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
4 years ago
Solved

Asking for help with a Dates Calculated Column

I'm still a pretty new BI user, coming from years of excel experience, so I'm still trying to learn the DAX/excel formula crossover.   I have a dataset of transaction dates, pulling invoice and rec...
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi Anonymous ,

    I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can create a calculated column as below:

    INVDATE = 
    CALCULATE (
        MAX ( 'Table'[TransactionDate] ),
        FILTER (
            'Table',
            'Table'[InvoiceNumber] = EARLIER ( 'Table'[InvoiceNumber] )
                && 'Table'[TransactionType] = "IN"
        )
    )

    If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

    How to upload PBI in Community

    Best Regards