how to create dynamic column in microshoft axapta report

i want to develope report as given bellow format

i want to create month as a dynamic column please suggest me how to do this.

customer name before april 2012 april2012 may2012 june2012 july2012 aug2012 total

reliance 0.00 10.00 12.00 5.00 10.00 24.00 61.00

i want the ageing report customer wise. please suggest me how to add month as a dynamic in the report.

i have select dialog as a month, year for starting the month

Hi

first step you can decide no of column,

add text control with autodeclaration “Yes”

void printlabels()

{

map = new m(string,int)

int i = 20;

while ( Colno < no of columns)

{

m.insert(columnname,i);

i +=20;

}

}

Now "m " contains labelnames and labelposition.

print data()

{

use m here

}

thnks done it

Hello Forever,

Can u please explain how your problem is solved ? I have the same requirement for ax 2012 ssrs report.

Mayuri, this question is three years old and it’s about a MorphX report, not an SSRS report. Please create a new thread and describe your problem properly there.