A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Looks like that worked for the macro after running! Thank youX1000!
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How can I superscript the letter "i" in parenthesis of last line below to be like the 1 and 2 in the lines above (bolded for clarity)? I am not the one who wrote this macro and am trying to make updates...
Selection.Replace What:="<sup>1</sup>", Replacement:="**¹**", LookAt:=xlPart \_
, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, \_
ReplaceFormat:=False
Selection.Replace What:="<sup>2</sup>", Replacement:="**²**", LookAt:=xlPart \_
, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, \_
ReplaceFormat:=False
Selection.Replace What:="<sup>i</sup>", Replacement:="**i**", LookAt:=xlPart \_
, SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, \_
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
Looks like that worked for the macro after running! Thank youX1000!