Forum Discussion
Anonymous
7 years agoNot applicable
Date Column to Table
Hi Experts I have the following two columns in my table. Year and Month. so assume Year is 2018 and month is Jan, i want to add a third column that gives me that date as 01/01/2018....for each of...
- 7 years ago
Hi Anonymous
How about this for your new column:
DateColumn = DATE(Table1[Year], Table1[Month], 1)
- 7 years ago
Hi,
This calculated column formula should also work
=1*("1/"&[Month]&"/"&[Year])
Format this column as Date.
Anonymous
7 years agoNot applicable
Thanks Ash
Ashish_Mathur
7 years agoSuper User
You are welcome.