Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

urgent help[ required in bar chart

Hi All,

I'm having a bar chart X- axis of this chart is date in MMM_YYYY format.

There are more than one entry in single month so chart has to sum up these things and have only one bar for one month. Currently chart is having more than one chart for each month as there are more than one record for each month. But how do i make it to show one bar per month ?

Attached is sample file.

Thnaks

9 Replies
senpradip007
Specialist III
Specialist III

Can you upload sample qvw?

Not applicable
Author

Hi Pradip,

PFA file.

kamalqlik
Partner - Specialist
Partner - Specialist

Hi Kavita,

I am not able to get what you want.

Can you explain it more clearly as per your requirement.

Regards,

Kamal

Not applicable
Author

Hi Kamal,

I had uploaded wrong file. Now I have changed it. If u open the file I shared now, You can see multiple bars for Dec-2012. All I want is have single bar for Dec-2012(or have single bar for every month).

kamalqlik
Partner - Specialist
Partner - Specialist

Hi Kavita,

Please attach the file to.

Not applicable
Author

Hi Kamal,

I have attached the updated file . Please see my previous comments

Kavita

senpradip007
Specialist III
Specialist III

Try somthing like:

Aggr(sum( BILLED_AMT1), MONTH_BILLED)

tresesco
MVP
MVP

Remove your group as dimension and take Billed_Month as dimension. PFA

jagan
Luminary Alumni
Luminary Alumni

Hi,

Give this as expression in your Drill down Group

=Date(MonthEnd(MONTH_BILLED), 'MMM-YYYY') instead MONTH_BILLED.

or  Create a new field in script like below and use it in Drilldown group

LOAD

*,

Date(MonthEnd(Date#(BILLED_MONTH,'DD-MMM-YY')), 'MMM-YYYY') as BILLED_MONTH

From DataSource;

Hope this helps you.

Regards,

Jagan.