Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
How would I create a measure that only applies [SAID_FORMULA] to {Specific Channel in Table}.. and applies a different [SAID_FORMULA2] to all else.
Solved! Go to Solution.
Hi @Anonymous,
You can do something like this:
FORMULA = IF ( MAX ( Table[Specific Channel] ) = "Specific", SUM ( Table[A] ), SUM ( Table[B] ) )
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsHi @Anonymous,
You can do something like this:
FORMULA = IF ( MAX ( Table[Specific Channel] ) = "Specific", SUM ( Table[A] ), SUM ( Table[B] ) )
Regards,
MFelix
Regards
Miguel Félix
Proud to be a Super User!
Check out my blog: Power BI em PortuguêsPerfect!
Thanks!!