I can t seem to find any solutions when searching Google or Youtube.
I have an Excel workbook with tables linked to SQL stored procedures via Microsoft Query connections. I ve added columns to the tables that contain formulas referencing a Sales column.
Every time I refresh my data (Data > Refresh All) my formula references change. See examples below:
Formula before refresh:
IF(AF9=Dates!$F$3, SQL - SellIn Data !AH9,IF(Dates!$A$18=Dates!$A$21, SQL - SellIn Data !AH9,( SQL - SellIn Data !AH9/Dates!$A$27)*Dates!$A$24))
Formula after refresh:
IF(AF9=Dates!$F$3, SQL - SellIn Data !AH18,IF(Dates!$A$18=Dates!$A$21, SQL - SellIn Data !AH18,( SQL - SellIn Data !AH18/Dates!$A$27)*Dates!$A$24))
Does anyone know why this happens and how I can resolve this?