how to remove "= sign"

omairhe

Well-known Member
Joined
Mar 26, 2009
Messages
2,040
Office Version
  1. 2019
Platform
  1. Windows
Hi...looking for a formula to remove an "= sign" at the very beginning. hence if "=Jordan" then want to change it to "Jordan" in cell T3 only.

but wait, the resulting cell T3 "=Jordan" already has a formula inside it =(U3&V3&W3&X3&Y3)

How to enter formula for removing "= sign" and not disturbing the existing formula ....


Will appreciate help!!
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
Are you saying:
=(U3&V3&W3&X3&Y3)

results in the value "=Jordan" appearing in the cell? If so, you could use:

=MID(U3&V3&W3&X3&Y3,2,1024)
 
Upvote 0
Or possibly one of these?

=REPLACE(U3&V3&W3&X3&Y3,1,1,"")

=SUBSTITUTE(U3&V3&W3&X3&Y3,"=","")
 
Upvote 0
Thank you all the formula works flawlessly...

Appreciate it a lot :)
 
Upvote 0
Thank you all the formula works flawlessly...

Appreciate it a lot :)
Just note that if it is possible that U3&V3&W3&X3&Y3 could result in a string that does not start with "=" then the SUBSTITUTE version would be best as the other two will strip off the first character no matter what it is (unless that is what you want anyway :)).
 
Upvote 0
hi well the = sign is always going to be there unless i change the formula for the cell that causes this.

the cell is U3 =AutoFilter_Criteria(U60) this results in = sign in cell T3

is possible to apply formula directly on U3 to remove the = sign

:)
 
Upvote 0
hi well the = sign is always going to be there unless i change the formula for the cell that causes this.

the cell is U3 =AutoFilter_Criteria(U60) this results in = sign in cell T3

is possible to apply formula directly on U3 to remove the = sign

:)
Yes, you could apply any of the suggested formula structures to U3 if you want, and return T3 to what it was before.
 
Upvote 0
Yes, you could apply any of the suggested formula structures to U3 if you want, and return T3 to what it was before.

the problem here seems to be with two words for instance If "=Jordan Michael" in U3 then the formula in U3 =MID(AutoFilter_Criteria(U60),2,1024) results in only "Jordon" on T3 without the rest of &V3&W3&X3&Y3) formula working aswell. but its working fine with only one word eg "=Jordan"

Thanks for yr interest in this matter.
 
Upvote 0

Forum statistics

Threads
1,215,519
Messages
6,125,299
Members
449,218
Latest member
Excel Master

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