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
| User | Count |
|---|---|
| 57 | |
| 44 | |
| 32 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 82 | |
| 66 | |
| 42 | |
| 27 | |
| 25 |