March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi Folks,
To display another column bases on some condition using date fields?
e.g when by date fields meets min date as a agrument to display region column?
I have wrote this code but still no progress
VAR _SelectedDates =VALUES('Base Data'[DATE_ON])
VAR _MINDate=MINX(_SelectedDates,'Base Data'[DATE_ON])
var DC= IF('Base Data'[DATE_ON]=_MINDate,'Base Data'[Sub Categories],"NA")
return
DC
Solved! Go to Solution.
@Sampathkumar_v , You can not use slicer value in column, Create a measure
if(Min(Date[Date]), calculate(Min(Date[Date]), filter(allselected(Table), [Region] = max(Table[Region]) )) , "Min", "Na")
You can use dynamic segmentation for slicer on a measure
example
Customer Retention with Dynamic Segmentation, New/Lost/Retain Customer Count: https://youtu.be/EyL7KMw877Q
@Sampathkumar_v , You can not use slicer value in column, Create a measure
if(Min(Date[Date]), calculate(Min(Date[Date]), filter(allselected(Table), [Region] = max(Table[Region]) )) , "Min", "Na")
You can use dynamic segmentation for slicer on a measure
example
Customer Retention with Dynamic Segmentation, New/Lost/Retain Customer Count: https://youtu.be/EyL7KMw877Q
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
87 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |