SuperNam Posted October 24, 2021 Report Share Posted October 24, 2021 How can I show the season for the date that I have inserted? Any help would be great. Thanks! Quote Link to comment Share on other sites More sharing options...
0 IamNatoyThatLovesYou Posted October 24, 2021 Report Share Posted October 24, 2021 Hello @SuperNam, You can try creating a Formula or calculated value/field then insert the code below. CASE WHEN ( (Month('[@cbParamVirtual1]')) >= 3 ) AND ( (Month('[@cbParamVirtual1]')) <= 5 ) THEN 'Spring' WHEN ( (Month('[@cbParamVirtual1]')) >= 6 ) AND ( (Month('[@cbParamVirtual1]')) <= 8 ) THEN 'Summer' WHEN ( (Month('[@cbParamVirtual1]')) >= 9 ) AND ( (Month('[@cbParamVirtual1]')) <= 11 ) THEN 'Fall' WHEN ( (Month('[@cbParamVirtual1]')) <= 2 ) OR ( (Month('[@cbParamVirtual1]')) = 12 ) THEN 'Winter' END -Natoy Quote Link to comment Share on other sites More sharing options...
0 IamNatoyThatLovesYou Posted October 24, 2021 Report Share Posted October 24, 2021 Just to add more information. You may also check this link for reference regarding Case Statements. -Natoy Quote Link to comment Share on other sites More sharing options...
0 RuisiHansamu Posted October 26, 2021 Report Share Posted October 26, 2021 I agree with Natoy, you can use CASE statements with this. However, Regarding on the SQL Queries, I believe it is not directly. But we can create a View to join the tables, then create a Report DataPage to retrieve data from this view, in which we can apply further filters. You may write SQL Statements to do subqueries from the results returned by your Report DataPage. Also, SQL Statements can be used in tables, and calculated values. This video from Caspio helped me as well about using SQL in the Bridge : I hope this helps. Cheers! Quote Link to comment Share on other sites More sharing options...
Question
SuperNam
How can I show the season for the date that I have inserted? Any help would be great. Thanks!
Link to comment
Share on other sites
3 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.