Skip to content

Commit

Permalink
Bug fix of convert_to_jumpable
Browse files Browse the repository at this point in the history
sheet name can include space
  • Loading branch information
Koji K. Watanabe committed Oct 16, 2020
1 parent 29217e2 commit e5ce645
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys_plugin/miscellaneous/formula_parser.bas
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ Private Sub defaultAction_formula(arg As String)
End Sub

Private Function convert_to_jumpable(arg As String) As String
arg = Trim(arg)
arg = Replace(arg, ",", "")
arg = Replace(arg, " ", "")
arg = Replace(arg, """", "")
convert_to_jumpable = arg
End Function
Expand Down
Binary file modified vimx.xlam
Binary file not shown.

0 comments on commit e5ce645

Please sign in to comment.