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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Assistance in writing an IF statement

Hello,

 

I'm trying to write a formula which needs to include an IF statement.

 

Note:

"SharedHours" is a measure

"Percent" is a measure

 

Hours = CALCULATE([SharedHours],ALL(Clients))*[Percent]
 
I'm trying to create an IF statement specifically for the Client field, which is a table. I want the formula to state, 
Hours = CALCULATE([SharedHours],ALL(Clients)) EXCEPT "ABC" *[Percent]. In other words, I want the formula to calculate the Total Hours for all the clients, except one specific client. 
 
Can you please advise on how I can write this out? Thank you very much in advance.
 
 
1 ACCEPTED SOLUTION
selimovd
Super User
Super User

Hey @Anonymous ,

 

try the following approach. I assume the clients name would be in a column [ClientName] in the table Clients (Clients[ClientName]):

Hours =
CALCULATE(
    [SharedHours],
    ALL(Clients)),
    Clients[ClientName] <> "ABC"
) * [Percent]

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

View solution in original post

1 REPLY 1
selimovd
Super User
Super User

Hey @Anonymous ,

 

try the following approach. I assume the clients name would be in a column [ClientName] in the table Clients (Clients[ClientName]):

Hours =
CALCULATE(
    [SharedHours],
    ALL(Clients)),
    Clients[ClientName] <> "ABC"
) * [Percent]

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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