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!Get Fabric certified for FREE! Don't miss your chance! Learn more
Hey Guys,
I ran into another problem. I have Calculated colunm called Sunday Sug.Hr. Please see below picture and formular that I used to calculate'
(Sunday Sug.Hr = 'Traffic by Month'[Sunday.] *RELATED('This Month'[Payroll Hours Based on GP]))Besed on the result I want to show,
if result = 0 then "0"
if result <8 then "8"
Else whatevether result
I tried several ways. its give me an error, (Ex IF AND, etc)
Column = SWITCH(('Traffic by Month'[Sunday.] * RELATED('This Month'[Payroll Hours Based on GP])) = 0,0,('Traffic by Month'[Sunday.] * RELATED('This Month'[Payroll Hours Based on GP])) < 8,8)Thank you So much
Dhana
Solved! Go to Solution.
Hi @dananjayaprasad,
You just need to create a calculated column based on the column "Sunday Sug.Hr" using the formula below.
Column =
IF (
'Traffic by Month'[Sunday Sug.Hr] = 0,
0,
IF (
'Traffic by Month'[Sunday Sug.Hr] < 8,
8,
'Traffic by Month'[Sunday Sug.Hr]
)
)
Best Regards,
Angelia
Hi @dananjayaprasad,
You just need to create a calculated column based on the column "Sunday Sug.Hr" using the formula below.
Column =
IF (
'Traffic by Month'[Sunday Sug.Hr] = 0,
0,
IF (
'Traffic by Month'[Sunday Sug.Hr] < 8,
8,
'Traffic by Month'[Sunday Sug.Hr]
)
)
Best Regards,
Angelia
Thank you Angelia.
As an alternative for using those ugly nested IFs, the SWITCH function has some neat tricks - see https://powerpivotpro.com/2015/03/the-diabolical-genius-of-switch-true/
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 68 | |
| 59 | |
| 47 | |
| 20 | |
| 15 |
| User | Count |
|---|---|
| 104 | |
| 103 | |
| 37 | |
| 27 | |
| 26 |