@ is added in formulas for newer versions of excel 365.

niket

New Member
Joined
Jun 7, 2021
Messages
6
Office Version
  1. 365
Platform
  1. Windows
I am having below formula:
=IF(ISNUMBER(SEARCH(@CELL("contents"),B4)),MAX($A$1:A3)+1,0)

In older versions of excel before 1902 it is working as expected but in the later versions of excel 365 @ is getting added before CELL and formula is not working in it.
I have tried to replace '@' to '' using script but it is not getting replaced. Except @ all other characters were replacing through it.

Is there any way to remove it or can we prevent excel to add it in formula?
 
I have found the fix for this. Below formula works for all excel 365 versions.

Excel Formula:
=IF(ISNUMBER(SEARCH(INDIRECT(CELL("address")),B4)),MAX($A$1:A3)+1,0)
 
Upvote 0
Solution

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Hi, I also got troubled by this peculiarity while inserting formulas into cells using VBA. I use a dynamic-range function (e.g. FILTER) that spills into adjacent cells, but it got converted into the single-cell form.
I think I have found a nicer solution, avoiding the need for the nested INDIRECT function (which, AFAIK, significantly increases the permanent re-computing load of a sheet).

I found out that inserting the formula to the Range itself or to Range.Formula property results in adding the @ sign to the other similar properties such as Range.Formula2 (but not to the Range.Formula itself). As a result, the modified formula WITH the @ appears and evaluates within the cell.
formula vs formula2.png


The solution is therefore as simple as using the Range.Fomula2 property instead od Range.Fomula in VBA to insert a formula string into.

To fix already modified formulas and remove the @'s (instead of the non-functioning Replace method), you may use
VBA Code:
Range("A1").Formula2 = Range("A1").Formula
 
Upvote 0

Forum statistics

Threads
1,214,614
Messages
6,120,520
Members
448,968
Latest member
Ajax40

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