Forum Discussion
milmendez
3 years agoNew Member
DAX Command
I have a table that include Created date and Topic columns. I need to add a formula in a new Due date column where PBI will take that Created date (formatted as 8/4/2023), and add 2 days (excluding ...
- 3 years ago
- 3 years ago
Thank you so much. I was able to get that formula to work exactly how I needed it to. Awesome!
I do have another question. I have three other Topics that would follow the same rule. How can I add additional Topics to the fomula.
VAR MainAddendum = IF ( 'Help Requests'[Topic] = "TeamConnect>Performance/Slow/Freezing", 2, 1)
barritown
3 years agoSolution Sage
milmendez
3 years agoNew Member
Thank you so much. I was able to get that formula to work exactly how I needed it to. Awesome!
I do have another question. I have three other Topics that would follow the same rule. How can I add additional Topics to the fomula.
VAR MainAddendum = IF ( 'Help Requests'[Topic] = "TeamConnect>Performance/Slow/Freezing", 2, 1)
- barritown3 years agoSolution Sage
Like that:
VAR MainAddendum = IF ( 'Help Requests'[Topic] IN { "TeamConnect>Performance/Slow/Freezing", "Topic 2", "Topic 3" }, 2, 1)