The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hi,
I have two date column created date and updated date
now i want to create a single column of dates
where created date=updated date
is it possible?
Solved! Go to Solution.
@sainig546 , New column
if([created date] = [updated date], [updated date], blank())
or are you looking for a solution where you want have common date table for 2 dates.
Thanks amit
@sainig546 , New column
if([created date] = [updated date], [updated date], blank())
or are you looking for a solution where you want have common date table for 2 dates.