Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
Solved! Go to Solution.
@Anonymous 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()
)
@Greg_Deckler ya i want to apply above formula only for three overdue types only ..Thanks Now working
@Anonymous Try:
OSS date column =
IF(ISBLANK([Proposedate]),[Delivery]+VALUE([Timeconv]),[Proposedate]+VALUE([Timeconv]))
@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
@Anonymous 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()
)
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
11 | |
9 | |
8 | |
8 | |
7 |
User | Count |
---|---|
14 | |
12 | |
11 | |
10 | |
9 |