Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hello everybody,
I have two tables (CDE and FAC). A order table (CDE), and an invoice table (FAC). Each with two date and ID columns. I would like to display in a visual only the ID with dates of orders (CDE) higher than the dates of FAC. Thank you
Have a good day
Solved! Go to Solution.
Create a calculated column in your CDE table:
Column = IF('CDE'[Date] > MAX('FAC'[Date])) , 'CDE'[Date] , BLANK())
Then filter on theat column <> Blank()
Create a calculated column in your CDE table:
Column = IF('CDE'[Date] > MAX('FAC'[Date])) , 'CDE'[Date] , BLANK())
Then filter on theat column <> Blank()
Thank you so much
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
126 | |
113 | |
72 | |
65 | |
46 |