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.
Hi all,
I'm brand new to power BI and have been told by a few people that power bi functionality mirrors excel. At least from my beginner state, this doesn't appear to be the case. I'm hoping you can help me fix my if statement. I have a strong suspicion from there i will need help writing a sumif / countif statement as well.
My if ( if([Weighted ABS Workload %]<=0.0349,1,0) ) statement was creating using a new measure (as opposed to new column). The values are populating correctly at each row, however, for some reason my total isn't populating? I should expecet to see the value of 10.
thanks,
Jason
Solved! Go to Solution.
m_total =
This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
Thanks for the response Greg.
I'm struggling with the formula. Please keep in mind this is coming from someone who is just beginning to learn python.
I've tried mirroring your formula as follows:
m_single = if([Weighted ABS Workload %] <= 0.0349, 1, 0)
m_total =
m_total =