Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
PNicholsonRS
New Member

Conditional calculated column issue

Hi all,

 

I have an issue where I need to create a new calculated column from the below data that will show when an item has been billed (i.e. Billed Amt is not blank) and collected. The problem I have is that the data in Collected Amt automatically shows a value when there is data in the Billed Amt column, whether that bill has been collected or not!

 

This is a problem because if a value shows in Billed Amt, and zero shows in Collected Amt, this could mean that either zero has been collected yet or that all of the bill has actually been written down or off (i.e. Written Off > 0).

 

Is there any way to create a new calculated column which will only show the value if the Billed has actually been Collected? The logic should be the below:

 

- Billed and Collected YES = Billed Amt is not blank, Collected Amt > 0

OR

- Billed and Collected YES = Billed Amt is not blank, Collected Amt = 0 but either WUWD Amt = Billed Amt, or Written Off > 0

 

Any help greatly apprecited!

 

Thanks!

 

PNicholsonRS_0-1668615428873.png

 

1 ACCEPTED SOLUTION
ERD
Super User
Super User

Hi @PNicholsonRS ,

 

YourColumn =
SWITCH (
    TRUE (),
    NOT ( ISBLANK ( Table[Billed Amt] ) ) && Table[Collected Amt] = 0
        && ( Table[WUWD Amt] = Table[Billed Amt] || Table[Written Off] > 0 ), "Yes",
    NOT ( ISBLANK ( Table[Billed Amt] ) ) && Table[Collected Amt] > 0, "Yes",
    "No"
)

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.

Check out my latest demo report in the data story gallery.

Stand with Ukraine!


Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/

Thank you!

View solution in original post

3 REPLIES 3
MorrisBI
Regular Visitor

Hi @PNicholsonRS 

 

Here is a solution, you need a custom colum, there is a conditional colum but is limited to a fix parameters. So, once you click on custom colum you could insert the next formula or modify it as you wish.

 

I used just the billed and collecet logic, without the WUWD but is the same.

 

The steps:

1.- Set your screen to the Data panel.

2.- Right click on the table that you are trying to add your column and then select "Edit Query" (Should be in the name of the table, not the fields, otherway you won't see the option "Edit Query")

MorrisBI_3-1668631061067.png

 

 

3.- Once you are on the Power Query screen, clic on Add Column.

MorrisBI_2-1668631018805.png

 

4.- Then, enter the next formula:

MorrisBI_0-1668630571377.png

Here is the formula in text:

if [Billed] > 0 and [Collected] > 0
then [Billed]
else "No billed/collected"

 

 

5.- Finally, the results:

MorrisBI_1-1668630627872.png

 

 

Hope this could solve your issue, if so don't hesitate to mark as solved if not please reply with your comments.

 

Have a nice day 🙂

 

ERD
Super User
Super User

Hi @PNicholsonRS ,

 

YourColumn =
SWITCH (
    TRUE (),
    NOT ( ISBLANK ( Table[Billed Amt] ) ) && Table[Collected Amt] = 0
        && ( Table[WUWD Amt] = Table[Billed Amt] || Table[Written Off] > 0 ), "Yes",
    NOT ( ISBLANK ( Table[Billed Amt] ) ) && Table[Collected Amt] > 0, "Yes",
    "No"
)

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.

Check out my latest demo report in the data story gallery.

Stand with Ukraine!


Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/

Thank you!

I think this could work as well. With my data example just need to modify a little bit to include the double $0 escenario (Billed and Collected), but I guess this won't happen on the real life.

 

MorrisBI_4-1668631655513.png

 

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors