Forum Discussion
Syndicate_Admin
3 years agoAdministrator
Custom Column - combine two query function
Hi, I have a standard date column named "MyDate" I want to create a custom column with year + quarter number, like: 2023 Q1 If I use this, it is working well: Date.Year([MyDate]) I am getting ye...
AlienSx
3 years agoSuper User
Text.From(Date.Year([MyDate])) & " Q" & Text.From(Date.QuarterOfYear([MyDate]))