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.
Good
I'm totally new using PBI
I require to perform an expression with dax on Calculate, it requires to use call several filters from the same column
I am currently using the following
Colaborador rutina = CALCULATE(MAX('t1_Inputs'[Field Value]),FILTER(ALL('t1_Inputs'),'t1_Inputs'[Job ID]==EARLIER('t1_Inputs'[Job ID])&&'t1_Inputs'[Field Name]=="Nombre del Colaborador:"))
But I need to use in the same expression the following "tags"
Is there a way I can do it?
Thanks!!
Solved! Go to Solution.
Is this what you mean?
Colaborador rutina =
CALCULATE (
MAX ( 't1_Inputs'[Field Value] ),
FILTER (
ALL ( 't1_Inputs' ),
't1_Inputs'[Job ID] = EARLIER ( 't1_Inputs'[Job ID] )
&& 't1_Inputs'[Field Name]
IN {
"Nombre Calaborador Bimbo",
"Nombre colaborador:",
"Nombre de colaborador:",
"Nombre del colaborador",
"Nombre del colaborador:",
"Nombre:"
}
)
)
You might also consider a CONTAINSSTRING version:
Colaborador rutina =
CALCULATE (
MAX ( 't1_Inputs'[Field Value] ),
FILTER (
ALL ( 't1_Inputs' ),
't1_Inputs'[Job ID] = EARLIER ( 't1_Inputs'[Job ID] )
&& CONTAINSSTRING ( 't1_Inputs'[Field Name], "Nombre" )
)
)
Is this what you mean?
Colaborador rutina =
CALCULATE (
MAX ( 't1_Inputs'[Field Value] ),
FILTER (
ALL ( 't1_Inputs' ),
't1_Inputs'[Job ID] = EARLIER ( 't1_Inputs'[Job ID] )
&& 't1_Inputs'[Field Name]
IN {
"Nombre Calaborador Bimbo",
"Nombre colaborador:",
"Nombre de colaborador:",
"Nombre del colaborador",
"Nombre del colaborador:",
"Nombre:"
}
)
)
You might also consider a CONTAINSSTRING version:
Colaborador rutina =
CALCULATE (
MAX ( 't1_Inputs'[Field Value] ),
FILTER (
ALL ( 't1_Inputs' ),
't1_Inputs'[Job ID] = EARLIER ( 't1_Inputs'[Job ID] )
&& CONTAINSSTRING ( 't1_Inputs'[Field Name], "Nombre" )
)
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
12 | |
10 | |
9 | |
6 |