Forum Discussion
Eyal
Helper II
2 years agoIdentify missing dates in table
I have a table witht he following columns : Lot #, Date, Attribute, Value i want to creat a table by dax that will lit the missing date for each Lpot # and Attribute. I tried using "ADDMISSINGITE...
- Anonymous2 years ago
Ritaf1983 Thanks for your contribution on this thread.
Hi Eyal ,
I created a sample pbix file(see the attachment), please check if that is what you want. You can follow the steps to get it:
1. Create a date dimension table
Date = VALUES('Table'[Date])2. Create a measure as below
Flag = VAR _date = SELECTEDVALUE ( 'Date'[Date] ) VAR _lot = SELECTEDVALUE ( 'Table'[Lot #] ) VAR _attr = SELECTEDVALUE ( 'Table'[Attribute] ) VAR _tdate = CALCULATE ( MAX ( 'Table'[Date] ), FILTER ( 'Table', 'Table'[Lot #] = _lot && 'Table'[Attribute] = _attr && 'Table'[Date] = _date ) ) RETURN IF ( _tdate = _date, 0, 1 )3. Create a table visual and apply a visual-level filter with the condition(Flag is 1)
Best Regards
Ritaf1983
Super User
2 years agoHi Eyal
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-...
Please show the expected outcome based on the sample data you provided.
https://community.powerbi.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447523