Hi,
I want to format the data as below for a report.
here is just a sample of what i am doing...
create table #test
(Header_1 varchar(20),
Month_1 numeric(10,2))
;
insert into #test values('Sales',120)
insert into #test values('Sales%',2.45)
;
select case when charindex('%',[Header_1])=0...