Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
Morning all,
I need to calculate semester from a date stored in a column in Power Query like:
01/01/2022 ==> S1
07/18/2022 ==> S2
I've tried the built-in functions of Power Query but I only for Quarter.
Any help will be appreciated, thanks in advance.
Solved! Go to Solution.
Here is one way to do it. Add a custom column with an expression like this.
= "S" & (if Date.Month([Date]) >=7 then "2" else "1")
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
Here is one way to do it. Add a custom column with an expression like this.
= "S" & (if Date.Month([Date]) >=7 then "2" else "1")
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
| User | Count |
|---|---|
| 20 | |
| 10 | |
| 8 | |
| 8 | |
| 7 |