The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I wanted to create a measure to get the First invoice date for each customer.
The measure should return the results from the start date and ignore the filter/visuals.
Below is the table.
Solved! Go to Solution.
Hi @gauravnarchal ,
You can use something like:
CALCULATE(MIN(TABLE[DATE]), ALLEXCEPT(TABLE, [CUSTOMER NO]))
@gauravnarchal , see if my blog on this can help, check firstnonblankvalue
https://www.linkedin.com/pulse/five-recent-power-bi-functions-you-should-use-more-often-amit-chandak
Hi @gauravnarchal ,
You can use something like:
CALCULATE(MIN(TABLE[DATE]), ALLEXCEPT(TABLE, [CUSTOMER NO]))