Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Guys,
All good?
Is there a way to create a calculated column that brings the first time such a condition appears in another column.
For example, I have a table that shows the week by week evolution of a project, I would need to get the first time we reached 100%.
follow the example
In the column appears a "YES" and the others remain blank?
Solved! Go to Solution.
Please try
Flag =
IF (
MINX (
FILTER (
CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[UNIDADE] ) ),
'Table'[Progresso] = 1
),
'Table'[DATA]
) = 'Table'[DATA],
"True"
)
Tksss!!!!!!!
Please try
Flag =
IF (
MINX (
FILTER (
CALCULATETABLE ( 'Table', ALLEXCEPT ( 'Table', 'Table'[UNIDADE] ) ),
'Table'[Progresso] = 1
),
'Table'[DATA]
) = 'Table'[DATA],
"True"
)
User | Count |
---|---|
24 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |