🔒 This topic is solved and locked.
Need further help from the community? Please
sign in and ask a new question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 08-15-2016 11:42 AM
(1292 views)
IS there a way to divide my date variable i just want it, i just want it to divide half yearly, its same like quaterly but i want only 2 parts for year. Is there a way to do that?
1 ACCEPTED SOLUTION
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi
Create a new calculated item using the following expression
IF ( Month('someDate'n) BetweenInclusive(1, 6) ) RETURN Concatenate(Format('someDate'n[Raw], 'YEAR4.'), 'H1') ELSE Concatenate(Format('someDate'n[Raw], 'YEAR4.'), 'H2')
You need to adjust the expression for your date data item
Bruno
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Hi
Create a new calculated item using the following expression
IF ( Month('someDate'n) BetweenInclusive(1, 6) ) RETURN Concatenate(Format('someDate'n[Raw], 'YEAR4.'), 'H1') ELSE Concatenate(Format('someDate'n[Raw], 'YEAR4.'), 'H2')
You need to adjust the expression for your date data item
Bruno
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for the suggestion