So my cast function here puts leading zeros on my column called ndc11…however (which is great because I need it to be 11 digits), when I copy and paste it into excel, it looses the leading zeros. Any way to turn this also into TEXT format so that it doesn’t lose the formatting in excel?
select extract(month from pf.fill_sold_dt ), Cast((Cast(ndc11 As Integer) (Format '9(11)')) As varChar(11) ) , generic_prod_id,prod_name, drug_type_cd, sum(fill_qty_dspn) as Pills, sum((fill_qty_dspn)/(pkg_sz*pkg_qty) )as Packs
from
prdedwvwh.prescription_fill_sold pf
inner join
prdedwvwh.drug_cur d
on
pf.drug_id = d.drug_id
where
fill_sold_dt between '2014-05-01' and '2015-04-30' and
generic_prod_id in ( '62100005008540','62100005008530','62100005008520')
group by 1,2,3,4,5
Format the column as Text before the data goes in and then Paste Special -> Values