The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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 |
---|---|
28 | |
11 | |
8 | |
6 | |
5 |
User | Count |
---|---|
35 | |
14 | |
12 | |
9 | |
7 |