March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello,
I have the following calculated column formula which calculates the difference between two dates and i use it in a table visualization with the start date, end date and duration columns. But i want to add a text at the end of the duration value: " days".
Duration = DATEDIFF('Scores'[Start date],'Scores'[End date],DAY)+1
I tried to use the concatenate function but it does not work. Any help is much appreciated!
Duration = CONCATENATE((DATEDIFF('Scores'[Start date],'Scores'[End date],DAY)+1), " days")
Solved! Go to Solution.
@Anonymous
Try this.
Duration = DATEDIFF('Scores'[Start date],'Scores'[End date],DAY)+1 & " days"
@Anonymous
Try this.
Duration = DATEDIFF('Scores'[Start date],'Scores'[End date],DAY)+1 & " days"
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
115 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
164 | |
116 | |
63 | |
57 | |
50 |