Forum Discussion
Syndicate_Admin
Administrator
3 years agoCustom 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
Super User
3 years agoText.From(Date.Year([MyDate])) & " Q" & Text.From(Date.QuarterOfYear([MyDate]))