Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi everyone
I'm very new to PowerBI, so apologies if this is a day 1 rookie error!
What I'm trying to achieve is to create a column called Total Received & Banked (one-off) which is an addition of columns
Solved! Go to Solution.
That's exactly what you told it to do. Abbreviating names, your DAX looks like this:
IF ( ISBLANK ( sic[Date] ), BLANK (), sic[DC1] + sic[DC2] + sic[DC3] )
This says that if [Date] is blank, return a blank, otherwise do the sum. If you want the opposite, just remove "BLANK()" or put it as the 3rd argument instead of the 2nd.
That's exactly what you told it to do. Abbreviating names, your DAX looks like this:
IF ( ISBLANK ( sic[Date] ), BLANK (), sic[DC1] + sic[DC2] + sic[DC3] )
This says that if [Date] is blank, return a blank, otherwise do the sum. If you want the opposite, just remove "BLANK()" or put it as the 3rd argument instead of the 2nd.
Hi Alexis
Many thanks, that works great now. I knew that it would be something silly that I'd done!
Best wishes,
Jon
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 57 | |
| 34 | |
| 33 | |
| 18 | |
| 16 |
| User | Count |
|---|---|
| 67 | |
| 65 | |
| 44 | |
| 30 | |
| 28 |