excel 2019 advanced filter format ="=Symbol append "

jbesr1230

Board Regular
Joined
Oct 16, 2004
Messages
96
I am using excel 2019 advanced filter on a set of security symbols. Symbols are from 1 to 4 characters. I need to proceed the symbol with ="= and append " after the symbol. I can do this manually but since I need to repeat the process often multiple times a day on many symbols I would like a formula I could put into the column to the right that would put the symbols in the proper form e.g. from PM to ="=PM" and the latter will resolve to =PM after exiting the cell. Is this possible?
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.
What about the following, assuming that the PM is in Cell A1;

Excel Formula:
="="&A1

forgive me if this isn't quite what you need, if its not please explain further.
 
Upvote 0

Close. How would I append a single " after &A1? I've tried &""" which does not work.


see Filter by using advanced criteria

"Because the equal sign (=) is used to indicate a formula when you type text or a value in a cell, Excel evaluates what you type; however, this may cause unexpected filter results. To indicate an equality comparison operator for either text or a value, type the criteria as a string expression in the appropriate cell in the criteria range:

=''= entry ''
 
Upvote 0
Hello,
This still not getting the needed form.
For example, Cell B29 has TD in it
I go to B29,
go into edit mode. put the cursor at the far left i.e. before the T
type ="=
move the cursor to the right of the D and type " and then hit return.
what is in the cell when the cursor is hovering on the cell is ="=TD"
when I move the cursor off cell B29 what I see is =TD in cell B29. The closing quote mark is not visible.

This is following the instructions from microsoft

see Filter by using advanced criteria

"Because the equal sign (=) is used to indicate a formula when you type text or a value in a cell, Excel evaluates what you type; however, this may cause unexpected filter results. To indicate an equality comparison operator for either text or a value, type the criteria as a string expression
in the appropriate cell in the criteria range:

=''= entry ''

Thank you.
JB
 
Upvote 0
I cannot seem to get what you require in the way of a formula but I have written 4 Macros that would work for your purpose;

*Always try macros on sample data / copy of the original work book first

VBA Code:
Sub ReEvaluateMulti()
'Rewrites multiple selected cells contents with the appendages
Dim Rng As Range, c As Range
    Set Rng = Selection
        For Each c In Rng
            c.Value = "=" & """" & "=" & c.Value & """"
        Next c
End Sub


Sub ReEvaluateIndividual()
'Rewrites the current cell with the appendages
    ActiveCell.Value = "=" & """" & "=" & ActiveCell.Value & """"
End Sub


Sub FromCellToRightMulti()
'Select the cells down the column to the right and use the column -1 offset to write the appendages
Dim Rng As Range, c As Range
    Set Rng = Selection
        For Each c In Rng
            c.Value = "=" & """" & "=" & c.Offset(, -1).Value & """"
        Next c
End Sub


Sub FromCellToRightIndividual()
'Select the cell to the right and use the column -1 offset to write the appendages
    ActiveCell.Value = "=" & """" & "=" & ActiveCell.Offset(, -1).Value & """"
End Sub
 
Upvote 0
when I move the cursor off cell B29 what I see is =TD in cell B29. The closing quote mark is not visible.
That is normal behaviour & should not be a problem.
 
Upvote 0

Forum statistics

Threads
1,214,525
Messages
6,120,051
Members
448,940
Latest member
mdusw

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