## 🐛 Bug Report Sometimes ExcelJS puts the "Implicit intersection operator: @" where it doesn't work Lib version: 4.3.0 ## Steps To Reproduce I'm using the following code to create a shared formula in the excel file I'm generating ```js worksheet.fillFormula( `J2:J${lastRowNumber}`, 'IFS(I2<0.9, "POOR! (--)", I2<1, "(-)", I2=1, "OK", I2>1.2, "BIG (++)", I2>1, "(+)")' ); ``` But then, in the resulting excel, I get the formula with an at `@` character in front of it. And so I get a `#NAME` error in the cell. See screenshot here <img width="499" alt="Screenshot 2022-03-14 at 16 14 47" src="https://user-images.githubusercontent.com/1127721/158204972-768599c2-5e26-4ec3-b851-9d3f873716e1.png"> ## The expected behaviour: I'm expecting the formula to appear in the excel file without the `@` character. ## Additional notes I initially created this bug as a [discussion](https://github.com/exceljs/exceljs/discussions/2005), but then I saw [others](https://github.com/exceljs/exceljs/issues/1491) have the same problem and they worked around it, so I guess it's a bug.