Ask your own question, for FREE!
Computer Science 24 Online
OpenStudy (anonymous):

What is the most efficient way to make the text in a row bold in every worksheet in the file in excel?

OpenStudy (mandre):

Write a macro to cycle through all the worksheets and make the row bold. Something like this: maxSheets = Sheets.Count For x = 1 To maxSheets Sheets(x).Activate Rows("1:1").Select Selection.Font.Bold = True Cells(1, 1).Select Next

OpenStudy (mandre):

This will also work: maxSheets = Sheets.Count For x = 1 To maxSheets Sheets(x).Rows("1:1").Font.Bold = True Next

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!