Special character

micglick

New Member
Joined
Feb 24, 2023
Messages
5
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
What does the special character "˥" mean in a VBA code? How and when should it be used?
 

Excel Facts

Which lookup functions find a value equal or greater than the lookup value?
MATCH uses -1 to find larger value (lookup table must be sorted ZA). XLOOKUP uses 1 to find values greater and does not need to be sorted.
The special character "˥" is a line continuation character in VBA code. This character is used to indicate that the code on the current line should be continued on the next line, without creating a new statement. It is typically used when a statement would otherwise become too long to fit on a single line.
 
Upvote 0
Solution
Thank you! Very helpful.
Would it be possible to maybe explain to me how for instance this code would look like without this character:
(What:="0", LookAt:=xlWhole, LookIn:=xlValues) ?
 
Upvote 0
Thank you! Very helpful.
Would it be possible to maybe explain to me how for instance this code would look like without this character:
(What:="0", LookAt:=xlWhole, LookIn:=xlValues) ?
It would look just like that because it's all on one line. That looks like the Find method. I find this to be a wealth of knowledge.
 
Upvote 0

Forum statistics

Threads
1,214,982
Messages
6,122,573
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top