Forum Discussion
FredDeb
3 years agoRegular Visitor
How to create this measure
Hi All, I want to create a measure that returns the "install date" for the row where the value in column A1.2b goes above 4 for the first time. Result should be: "30/01/2023" If the condition i...
Greg_Deckler
Community Champion
3 years agoFredDeb Try:
Measure = MINX(FILTER('Table',[A1.2b] > 4),[Install Date])FredDeb
3 years agoRegular Visitor
Thanks a lot. This helps me on the way.
I have a second question.
How can I do this for every column and put that data in a new table...