Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hi All
I am getting a error in caculating Quarters like this
Can you help me identify
Solved! Go to Solution.
@Anonymous
You can create your Quarter Column as follows:
Quarter =
VAR __M = MONTH ( financials[Date] )
RETURN
SWITCH(
TRUE(),
__M IN {1,2,3} , "Q4",
__M IN {4,5,6} , "Q1",
__M IN {7,8,9} , "Q2",
__M IN {10,11,12} , "Q3"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
Hi @Anonymous
Noticed that you have resolved your issue by yourself, right? Could you please mark your solution by Accept as solution to help the other members find it more quickly. Thanks in advance!
Best Regards,
Community Support Team _ Caiyun
@Anonymous
You can create your Quarter Column as follows:
Quarter =
VAR __M = MONTH ( financials[Date] )
RETURN
SWITCH(
TRUE(),
__M IN {1,2,3} , "Q4",
__M IN {4,5,6} , "Q1",
__M IN {7,8,9} , "Q2",
__M IN {10,11,12} , "Q3"
)
⭕ Subscribe and learn Power BI from these videos
⚪ Website ⚪ LinkedIn ⚪ PBI User Group
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
11 |
User | Count |
---|---|
19 | |
14 | |
14 | |
11 | |
9 |