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
THENNA_41
Post Partisan
Post Partisan

How to days count of number in days

i have three column  Deilviery date ,proposedate ,Timecov.   i want to  TImecov  number  to  propose date .  if any blank row in porposedate   its take delivery date column 

 

Delivery                Proposedate                Timecov                                      

15 sep 2019         10 sep 2019                    7 
16 sep 2019         10 sep 2019                    7 
05 june 2020                                               30 
15 July 2019         10 sep 2020                   45
15 sep 2019         10 sep 2021                    21 

Output:

Delivery                Proposedate                Timecov                     OSS date                  

15 sep 2019         10 sep 2019                    7                            17-sep-2019
16 sep 2019         10 sep 2019                    7                            17-sep-2019
05 june 2020                                               30                           05 july 2020
15 July 2019         10 sep 2020                   45                            25 oct 2020
15 sep 2019         10 sep 2021                    20                           30 sep 2021

 

any idea.its possible in dax ? i am looking for support . i am tired DATEADD fucntion i am getting Error 

 

Thanks 

 

 

                          

1 ACCEPTED SOLUTION

@THENNA_41 If I understand correctly, then something like:

OSS date column = 
  IF([Overdue] = "Standard overdue" || [Overdue] = "Old overdue" || [Overdue] = "UrgentOverdue",
    IF(ISBLANK([Proposedate]),[Delivery]+VALUE([Timeconv]),[Proposedate]+VALUE([Timeconv])),
    BLANK()
  )

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

4 REPLIES 4
THENNA_41
Post Partisan
Post Partisan

@Greg_Deckler   ya  i want to apply  above formula only for three overdue  types only ..Thanks Now working 

Greg_Deckler
Super User
Super User

@THENNA_41 Try:

OSS date column = 
  IF(ISBLANK([Proposedate]),[Delivery]+VALUE([Timeconv]),[Proposedate]+VALUE([Timeconv]))

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

@Greg_Deckler  its working perfect thanks .  how i will filter on this  above query 

i have   Overdue  column  name 

Overdue

Close Po 

Standard overdue 

Old overdue 
UrgentOverdue
Purchase OVR 

 

i want above apply only  Standard overdue ,Old overdue ,UrgentOverdue . please how i  will this filter above query 

@THENNA_41 If I understand correctly, then something like:

OSS date column = 
  IF([Overdue] = "Standard overdue" || [Overdue] = "Old overdue" || [Overdue] = "UrgentOverdue",
    IF(ISBLANK([Proposedate]),[Delivery]+VALUE([Timeconv]),[Proposedate]+VALUE([Timeconv])),
    BLANK()
  )

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

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