Forum Discussion
Sedos101
Helper I
3 years agoUsing a single row value in a column to populate a new column
Hi Everyone I was wondering how to do this in Power BI. Basically I have a column which has a row that contains a certain value that I want to use to populate another column entirely. For exa...
- 3 years ago
Sedos101 ,
Hi
Try following M codeif Text.End([#"Date/Time"] , 2) = "PM" or Text.End([#"Date/Time"] , 2) = "AM" then null else [#"Date/Time"]
Then Fill Down.
Thank you.
Dinesh_Suranga
Continued Contributor
3 years agoSedos101 ,
Hi
Try following M code
if Text.End([#"Date/Time"] , 2) = "PM" or Text.End([#"Date/Time"] , 2) = "AM" then null else [#"Date/Time"]
Then Fill Down.
Thank you.