Forum Discussion
How to filter data for no date rows
- 5 years ago
Anonymous
here is a workaround for you.
1. use dax to create a new table
Table 2 = VAR a=DISTINCT('Table'[Name]) return CROSSJOIN(a,'Table (2)')2. create a new column in the new table
Column = VAR _status=LOOKUPVALUE('Table'[Submitted],'Table'[Name],'Table 2'[Name],'Table'[Date],'Table 2'[Date]) return if(ISBLANK(_status),"nodata",_status)please see the attachment below
Anonymous , You have create a measure like this
new measure =
var _max = max(Table[Staus])
if(isblank(_max), "No",_max)
Join it with an independent table having value Yes and no, and create a new measure that use this table with values yes and no
refer to the video of dynamic segmentation , how to approach this
or
https://www.daxpatterns.com/dynamic-segmentation/
https://radacad.com/grouping-and-binning-step-towards-better-data-visualization
- Anonymous5 years agoNot applicable
I am not able to understand this technique since I am very new. Can you please attach a pbix so that I could figure it out.
- Anonymous5 years agoNot applicable
amitchandak or let me put it another way. I want to filter out the dates for which there is no data for the names.