Forum Discussion
tharaujo85
2 years agoFrequent Visitor
Retrieve First Date with a measure condition
Hi, This is my first post, so I apologize in advance if I'm not 100% clear. I have a measure that indicates the coverage in months of my inventory. I want to retrieve the first date which that meas...
- Anonymous2 years ago
Hi tharaujo85 ,
Thanks for your reply. You can create a measure as below to get it, please check if it can return the expected result...
Measure = MINX ( FILTER ( ALLSELECTED ( DIM_TEMPO ), [PrevEstq] < 3 ), DIM_TEMPO[dat_data] )If the above one can't help you get the expected result, you can create a simplified pbix file with fake data. Then share it with us as referred in my previous post.
How to upload PBI in Community
Best Regards
Anonymous
2 years agoNot applicable
Hi tharaujo85 ,
Thanks for your reply. You can create a measure as below to get it, please check if it can return the expected result...
Measure =
MINX (
FILTER ( ALLSELECTED ( DIM_TEMPO ), [PrevEstq] < 3 ),
DIM_TEMPO[dat_data]
)
If the above one can't help you get the expected result, you can create a simplified pbix file with fake data. Then share it with us as referred in my previous post.
How to upload PBI in Community
Best Regards
tharaujo85
2 years agoFrequent Visitor
Thanks Anonymous ! It worked just fine!