Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I having different fields such as (Month, quarter , year )in a cyclic group. I need to add one more to this group as day, Which should show the numbers(1to 31) as per the month and year.
go to dimension of chart-> edit group_. select group name (Month,Quarter,Year)-> edit and add day to
this -> apply and ok
hope this helps
First you need to create Day field in your script.
Load Day(DateField) as Day;
Now go to Settings->Doc Properties -> Groups Tab -> Select your groupname in Groups Tab of left side ->Edit -> Select the field which you want to add -> Click on Add button -> OK ->OK
There is no field for day . We need to create it.
if you have date field then
you can create using
Day(date) as day
or you can directly type in group
=Day(date)
hope this helps
Thanks, hope this will help me.