I need to pivot a table as show below using column "channel" and grouping it based on Units.
Actual table:
The result I need is shown below

I'm not an expert with pivotting and unpivoting concepts, I'm trying the below query to achieve the above result
SELECT [service_point_ID]
           ,isnull([1],0) - isnull([2],0) as net_usage_value
           ,[units]
            ,[1]
            ,[2]
            ,[channel_ID]
            ,[date]
            ,[time]
            ,[is_estimate]
            ,[UTC_offset]
            ,[import_history_id]                     
       FROM #temp1
       AS SourceTable PIVOT(sum(usage_value) FOR channel IN([1],[2])) AS PivotTable
If I execute this query I'm getting the below result 

The same logic is achieved in r -Refernce link Pivot using Mutiple columns
Here is the SQL fiddle for this one
CREATE TABLE #temp1
(
 Service_point_ID varchar(10) NUll,
 usage_value decimal(18,6) NULL,
 units varchar(10) NUll,
 [date] Date NULL,
 [time] time NULL,
 channel varchar(2) NULL,
 [Channel_ID] varchar(2) NULL,
 is_estimate varchar(2) NULL,
 UTC_Offset varchar(20) NULL
)
INSERT INTO #temp1 VALUES ('123',1.000000,'kvarh','2017-01-01','0015','1','11','A','-500')
INSERT INTO #temp1 VALUES ('123',0.200000,'kvarh','2017-01-01','0015','2','11','A','-500')
INSERT INTO #temp1 VALUES ('123',0.200000,'kwh','2017-01-01','0015','1','11','A','-500')
INSERT INTO #temp1 VALUES ('123',0.400000,'kwh','2017-01-01','0015','2','11','A','-500')
Any help is much appreciated.
