Forum Discussion
Anonymous
4 years agoNot applicable
Power Query Custom Column with year and month
Hi to all, i try to add a custom column from my two date fields Start and End, but after, i got an error: Expression.Error: The value isn't a single-character string. Details: Value=202103 For c...
- Anonymous4 years ago
Solve my task with this code:
let Test = List.Distinct(List.Transform({[Start_Date__c],[End_Date__c]}, each Date.ToText(_, "yyyyMM"))) in Test
Anonymous
4 years agoNot applicable
Solve my task with this code:
let
Test =
List.Distinct(List.Transform({[Start_Date__c],[End_Date__c]}, each Date.ToText(_, "yyyyMM")))
in
Test
V-lianl-msft
4 years agoCommunity Support
Glad to your problem has been solved. Thank you for sharing.