Share via

Help needed with OLD Excel Formula

Anonymous
2024-06-05T17:07:05+00:00

I am trying to clean up an old spreadsheet that has become riddled with errors over the years. Do not want to start over, just correct as needed. One of the formulas that is to determine % of change between current year YTD and prior YTD, starts with "1+" and I cannot find anywhere what that is. It appears to me it is probably left over from an old version or old program, as it seems to be skewing my data, but would like to be sure before making changes. This is how the formula shows:

=1+(ROUND(IF(K23=0, IF(L23=0, 0, SIGN(-L23)), IF(L23=0, SIGN(K23), (K23-L23)/L23)),5)) Anyone know what the "1+" ?

Microsoft 365 and Office | Excel | For business | Windows

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

1 answer

Sort by: Most helpful
  1. Anonymous
    2024-06-05T17:24:35+00:00

    The 1+ is there because of the use of (K23-L23)/L23 instead of just K23/L23 - they apparently didn't want the % change, just the % and didn't understand the math.

    Try replacing that long formula with just

    =IFERROR(K23/L23,"No old data")

    Was this answer helpful?

    0 comments No comments