Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
I have Data with out month field,
but i have data like jan,feb,mar,apr......... separated fields
how can i merge those fields into one under one month field
i tried with cross table but i am not getting could some one help me do this
i am atteching my Excel please find the attechment
Thanks in Advance
Niranjan
Hello, Niru Niru.
Here is an example QVW using Crosstable with your data. I'm going to attach the same file to your other posts about this issue too.
Hope it helps.
Cheers.
The easiest thing to do may be to create a master calendar to work with
Hi Robert,
But i have fields like
jan Actual Dollars,
feb Actual Dollars..like this format
here if i use master calerdar it will not work there is not mapping
Sorry ,if i am wrong
Best Regards,
Niranjan
I hope this is made up data!
The data does not lend itself to using crosstable, as you have other fields on the rows after the month based columns.
What I do in these situations, is load it in to a temp table, then load into another table with the columns in the right positions.
so for a file with columns as follows
X,Y,jan,feb,mat.apr..... Dec, Heir1,heir2...heir10
I would
(This is pseudo code notload script!)
temp: load * from file;
data: crosstable(month,value,4) load X,Y,Heir1,Heir2,jan,feb,mar,apr,may,jun,jul,aug,sep,oct,nov,dec resident temp;
drop table temp;
Does this help?
Richard
Hi Richard Garforth,
Thanks for your reply it was nice idea
but dont know how can apply
i atteched Excel dump could you please help me to solve
Best Regards,
Niranjan
ok.
Attached example.
You may find http://www.mockaroo.com/ useful for generating example data.
does the attached help?
Hi Niru,
But i suggest can you use the inline tables for this because the values are in the field labels this way is difficult.
Regards
Thanks you Richard it will helps a lot
Best Regards,
Niranjan
Hello, Niru Niru.
Here is an example QVW using Crosstable with your data. I'm going to attach the same file to your other posts about this issue too.
Hope it helps.
Cheers.
Hi Bruno montenegro,
it was greate answer ,my requirement will also same
Thank you so much
please if its possible give me breaf about how you did this issue
Best Regards,
Niranjan