Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
I am trying to add 7 days to the "Task Completion Date" if the "Task Status" is = CONCOMP which gives me the "GF Job Card Due Date" column. Thank you.
GF Job Card Due Date = IF(DATEDIFF(
Solved! Go to Solution.
@Seth4040 - Try this as a calculated column:
IF( Table[Task Status] = "CONCOMP", SUMX( Table, Table[Task Completion Date] + 7), Table[Task Completion Date])
If you only need the values where 7 days have been added then this will work:
SUMX( FILTER(Table, Table[Task Status] = "CONCOMP"), Table[Task Completion Date] + 7)
The above can also be used in a measure.
If either of these work, please accept this as the solution.
This kind of worked but showing the date as 12/31/9999 for some reason. I did change the first one just a little and got what I am showing. The second one had the same outcome exect dates in all the fields even when not = to CONCOMP and again the dates were 12/31/9999
Ok got it fixed and attached what I got it to. Thanks for your help.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 23 | |
| 13 | |
| 10 | |
| 6 | |
| 5 |