User Profile
JKPieterse
Silver Contributor
Joined Oct 06, 2016
User Widgets
Recent Discussions
Re: Excel toolbar format
How did you customize the ribbon, did you use the right-click, customize ribbon feature? If so, there isn't much you can do. But if you create an add-in with your own customizations you can have more control. See: https://jkp-ads.com/rdb/win/section2.htm26Views1like0CommentsRe: Focus Cell
I'm afraid that feature is unavailable in Excel 2021. You could try this little and free add-in of mine: https://jkp-ads.com/download.aspx#findmycursor Alternatively, just below that add-in is FollowCellPointer, another add-in aimed to help you see where you are. Note that the latter may clear your undo stak. The first one doesn't.62Views0likes0CommentsRe: Lost ability to create macros
chrishall166 Buttons in that dialog will be enabled if you type a macro name in the "Macro name" box (or choose one from the list if there are any). If the macro is available in any of the workbooks (or in the workbook you select in the drop-down), then the Edit and Run buttons are enabled. The Create button gets enabled as soon as you enter a valid macro name.40Views1like0CommentsRe: Complex Cell Format, Maybe!!!
If you are fine with a bit of VBA you can make this happen. Right-click the worksheet's tab and choose "View Code". Paste this code in the window that opens: Private Sub Worksheet_Change(ByVal Target As Range) If Target.Cells.Count = 1 Then TurnIntoSuperScript Target End If End Sub Next, from the menu, choose Insert, Module. Paste in this code: Sub TurnIntoSuperScript(cl As Range) Dim val As Variant Dim pos As Long val = cl.Value pos = InStr(val, "-") If pos > 0 Then With cl.Characters(Start:=1, Length:=pos - 1).Font .Superscript = False End With With cl.Characters(Start:=pos, Length:=Len(val) - pos + 1).Font .Superscript = True End With Else cl.Font.Subscript = False End If End Sub Now try entering a fraction into a cell on the worksheet.4Views0likes0Comments
Recent Blog Articles
No content to show