Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Would someone give me a hand here? Still learning Power BI transformations.
I have a column called created_at that has dates in format of ISO 8601 format YYYY-MM-DDTHH:MM:SSZ (Date/Time/TimeZone). I want to transform that column so that every value that is before 05/15/2022 is changed TO 05/15/2022 otherwise, leave the value the same. So the column should only have dates listed as 05/15/2022 or later.
Solved! Go to Solution.
assuming the previous step name is "#Changed Type"
= Table.TransformColumns(#"Changed Type",{{"created_at", each List.Max({_,#datetimezone(2022,5,15,0,0,0,0,0)}), type datetimezone}})you can adjust time zone with the last 2 parameters of #datetimezone
In the Transform data mode, one you enable Query Settings in the View ribbon, you will be able to see the transformation steps in each table, the code I posted assumes that the previous step is called "#Changed Type" as in the picture below
Forgive my blankness but would you clarify what the "previous step name is "#Changed Type"" is for? Is "Changed Type" the original column name you mean?
Thanks for the formula I will try it!
assuming the previous step name is "#Changed Type"
= Table.TransformColumns(#"Changed Type",{{"created_at", each List.Max({_,#datetimezone(2022,5,15,0,0,0,0,0)}), type datetimezone}})you can adjust time zone with the last 2 parameters of #datetimezone
Forgive my blankness but would you clarify what the "previous step name is "#Changed Type"" is for? Is "Changed Type" the original column name you mean?
Thanks for the formula I will try it!
In the Transform data mode, one you enable Query Settings in the View ribbon, you will be able to see the transformation steps in each table, the code I posted assumes that the previous step is called "#Changed Type" as in the picture below
 
					
				
				
			
		
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
 
            | User | Count | 
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 | 
| User | Count | 
|---|---|
| 23 | |
| 12 | |
| 11 | |
| 10 | |
| 9 |