SQL Complete Formatting

SQL Complete Formatting

Hi,

Is it possible to format code where the values are all aligned? I've tried but could get it to work.

From this...
MERGE INTO [dbo].[SomeTable] AS [Target]
USING (
    VALUES ( 1 , N'AAA' , N'AAA' , 1 , 0 , N'CBE0001' , '2020-05-11T16:00:22.3466667') ,
           ( 2 , N'BBB BBBB' , N'BBB' , 1 , 0 , N'CBE0002' , '2020-05-11T16:00:22.3466667' ) ,
           ( 3 , N'CCC' , N'CCC CCC' , 1 , 0 , N'CBE0003' , '2020-05-11T16:00:22.3466667' ) 

To this....
MERGE INTO [dbo].[SomeTable] AS [Target]
USING (
VALUES ( 1,  N'AAA',              N'AAA',          1, 0, N'CBE0001', '2020-05-11T16:00:22.3466667' )
,              ( 2,  N'BBB BBBB',   N'BBB',          1, 0, N'CBE0002', '2020-05-11T16:00:22.3466667' )
,              ( 3,  N'CCC',              N'CCC CCC', 1, 0, N'CBE0003', '2020-05-11T16:00:22.3466667' )