Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi There,
I'm trying to exclude a value if 2 conditions are met.
In the example you'll find a Value, VRA, Salesperson and a Result column. Obviously the result column is what I'm trying to achieve but I can't figure it out.
If the condition VRA=yes and Salesperson does not contain -KEY the value should be excluded from the column.
Can anyone help me with this one please?
Thank you so much.
D.
Solved! Go to Solution.
Hi @Daro68 ,
Try with this calculated column
Regards,
@Daro68 , Try a new column like
if(search("VRA",[VRA],,0) >0 && search("KEY",[salesperson],,0)<=0, "Yes", "No")
Hi @Daro68 ,
Try with this calculated column
Regards,
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.