
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hide line in chart while making selection in cyclic group
Hi All,
I have a line chart with 3 expressions, and I need to hide one among them when the cyclic group(Calendar) in that chart is other than Month.
Please help me with the solution.
Thanks
Saritha Xavier
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi All,
i got the solution for this
=if(GetCurrentField(Cal) = 'Month Year_S', 1,0)
Thanks


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
Try like this
Chart Properties -> Expression -> Click on the expression -> Select Conditional option and give below expression
=GetCurrentField(Calendar) = 'Month'
Note: Replace Calendar with the Group name
Month with the actual field name.
Hope this helps you.
Regards,
jagan.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi All,
i got the solution for this
=if(GetCurrentField(Cal) = 'Month Year_S', 1,0)
Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Please post the sample app


- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Sarita,
No need of If() you can simply give like below
=GetCurrentField(Cal) = 'Month Year_S'
Hope it helps you.
Regards,
Jagan.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks Jagan,
Yes No need of if() , without if () also it is working fine.
