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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
JustNewbie
Helper I
Helper I

Conditional formatting need help

Hi,

 

I have a table below. Can I use the conditional formatting to perform the function:

If Label = I, always Date2 - Date1, if Date2 & Date1 are null then use Date4-Date3.

How to do this?

 

Label Date1Date2Date3Date4
I 1/11/20222/11/2022  
G  5/11/20226/11/2022 
I   1/11/20223/11/2022
G 1/11/20223/11/2022  
      
1 ACCEPTED SOLUTION

Hi @JustNewbie ,

 

Please create a new column:

Column = 
SWITCH (
    TRUE (),
    'Table'[Label] = "I"
        && (
            'Table'[Date1] <> BLANK ()
                && 'Table'[Date2] <> BLANK ()
        ), DATEDIFF ( 'Table'[Date1], 'Table'[Date2], DAY ),
    'Table'[Label] = "I"
        && (
            'Table'[Date1] = BLANK ()
                && 'Table'[Date2] = BLANK ()
        ), DATEDIFF ( 'Table'[Date3], 'Table'[Date4], DAY )
)

 

You will get a column like this and I think this is the result you want:

vyadongfmsft_0-1669366703016.png

 

If you have another question, please open another thread. In a post, we'd better only address one issue. This will cpntribute to the efficiency of problem solving.

 

Best regards,

Yadong Fang

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

View solution in original post

3 REPLIES 3
amitchandak
Super User
Super User

@JustNewbie , Not sure what is the role of conditional formatting here

 

if([Label] = "I" ,

Switch( True(),

isblank([Date1])  && isblank([Date2]) , [Date2] =[Date1],

[Date4] =[Date3],

blank()), blank())

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak thank you.

I have another condition.. If either Column A or Column B is blank then give me blank, else give me Column B date subtract Column A date in networkdays...
Thank u..

Hi @JustNewbie ,

 

Please create a new column:

Column = 
SWITCH (
    TRUE (),
    'Table'[Label] = "I"
        && (
            'Table'[Date1] <> BLANK ()
                && 'Table'[Date2] <> BLANK ()
        ), DATEDIFF ( 'Table'[Date1], 'Table'[Date2], DAY ),
    'Table'[Label] = "I"
        && (
            'Table'[Date1] = BLANK ()
                && 'Table'[Date2] = BLANK ()
        ), DATEDIFF ( 'Table'[Date3], 'Table'[Date4], DAY )
)

 

You will get a column like this and I think this is the result you want:

vyadongfmsft_0-1669366703016.png

 

If you have another question, please open another thread. In a post, we'd better only address one issue. This will cpntribute to the efficiency of problem solving.

 

Best regards,

Yadong Fang

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

Helpful resources

Announcements
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

May Power BI Update Carousel

Power BI Monthly Update - May 2026

Check out the May 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.