cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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!:
Mastering Power BI 2nd Edition

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!:
Mastering Power BI 2nd Edition

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!:
Mastering Power BI 2nd Edition

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors