Forum Discussion
NidhiBhusari
Helper IV
5 years agoDifference between two date values that are in text format.
Hello, I have two rows having year values named as START YEAR and END YEAR. But these values are in text format. Can anybody please help me in calculating difference between these two values. ...
- 5 years ago
you can create a column.
Column = if('Table (2)'[endYear]="\N",blank(),int('Table (2)'[endYear])-'Table (2)'[startYear])
NidhiBhusari
Helper IV
5 years agoryan_mayu can you share the sample file in which you have implemented the scenario?
ryan_mayu
Super User
5 years agopls see the attachment below
- NidhiBhusari5 years ago
Helper IV
Hey ryan_mayu Thanks for the solution...its working.
- ryan_mayu5 years ago
Super User
you are welcome