I feel that Edate is not working properly in the excel formula
I havenât tried it, but you might need to do the following:
- Format your date in short form
- Use a template column to wrap it in quotes
- Use the template column as A1 instead of the date column
Nope its not working
Thanks @Yasin_Hassanien for creating a topic for this issue!
I thought Iâm the only person who gets this error! Mark ( @Mark ) are you able to help here?
Thank you! Weâll look at it.
So I managed to run formulas in excel by creating a column template and replacing the values in it, mostly the issue was because the I canât add Double Quotations in the Excel formula like the image below
But the workaround is to prepare the excel formula in a template column to ensure that all the text is exactly brought from the backend properly to send it to the formula column as below
Then map it to the excel formula column will work eventually
@Robert_Petitto Your method works but alot of columns and math was getting my table messed up so I tried my best to the shorter solution as I mentioned EDATE in Excel formula is not working - #7 by Yasin_Hassanien
Iâm not totally following this thread, so maybe Iâm talking out of my rear end, but just quickly reading your post about double quotes not workingâŚcould it be that you need to escape your double quotes to make them work? In the code world, when you are working with strings of text, you typically wrap them in double quotes to indicate the beginning and end of the string, but if you need to insert a double quote in the middle of that string, then you can run into issues because an inserted double quote will mark the end of a text string prematurely. To avoid this, what we do is âEscapeâ the double quotes by insert two double quotes together. ââ instead of ". The code will translate that into a single double quote, but inside of the text string that is already wrapped in double quotes. Google âcharacter escapingâ to get a better explanation. I wonder if thatâs maybe the case here. So anywhere you need a double quote, you will actually have to type two double quotes. Maybe this is something glide needs to address in their new Excel plugin.