Jan-14-2024, 05:44 AM
(Jan-14-2024, 05:01 AM)1418 Wrote: Thanks Larz60 but I'm new to Python so I still can't figure that out. Could you write the code to set the width for two of my columns, EForm ID & Contractor, cheers
you should be able to do using
data_frame.style.set_column_width({column_name: width})before you save changes. Where data_frame is the name of your data frame. You should be able to figure it out from here