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 the dates in columns Year and Month.
Hi Anonymous
How about this for your new column:
DateColumn = DATE(Table1[Year], Table1[Month], 1)
Hi,
This calculated column formula should also work
=1*("1/"&[Month]&"/"&[Year])
Format this column as Date.
5 Replies
- AlBCommunity Champion
Hi Anonymous
How about this for your new column:
DateColumn = DATE(Table1[Year], Table1[Month], 1)
- AnonymousNot applicable
many thanks AIB - spot on
- Ashish_MathurSuper User
Hi,
This calculated column formula should also work
=1*("1/"&[Month]&"/"&[Year])
Format this column as Date.
- AnonymousNot applicable
Thanks Ash
- Ashish_MathurSuper User
You are welcome.