joshbtn / excelFormulaUtilitiesJS

This library contains methods to beautify an excel formula. This library also contains functions to convert an excel formula to JavaScript (ECMAScript) or C# and python.
http://excelformulabeautifier.com/
Other
394 stars 101 forks source link

some double quotes are removed from beautified result. #105

Open PKell33 opened 6 months ago

PKell33 commented 6 months ago

=""""&IF(J$2>1,"""""""","")&TEXTJOIN(""""",""""",FALSE,OFFSET(GalaxyLoad_MasterData!$A$1,$D7-1,J$3-1,J$2,1))&IF(J$2>1,"""""""","")&""""

Above formula results in below. some double quotes are removed i.e. ="""" is reduced to =""" in first part and double quotes are also removed throughout the "beautified" formula.

=""" & IF( J$2 > 1, """"", "" ) & TEXTJOIN( """,""", FALSE, OFFSET( GalaxyLoad_MasterData!$A$1, $D7 - 1, J$3 - 1, J$2, 1 ) ) & IF( J$2 > 1, """"", "" ) & """