Forum Discussion

Carl_61's avatar
Carl_61
Iron Contributor
Dec 15, 2022
Solved

Populating cells with a Date across 12 TABS

Hello Community, If you are up to a challenge and if it possible to accomplish with formulas or VBA I've got a challenge for you.  I have 12 sheets in a workbook that look exactly the same.  Each wor...
  • mtarler's avatar
    mtarler
    Jan 18, 2023
    look at both as decimal (or percentage) are they the same or off by 100? It looks like the rate schedule is a true decimal number (i.e. 0.00088 or 0.088%) while the other number is coming in as % units (i.e. 0.088 which if formatted as % would be 8.8%) so basically you need to convert from % UNIT to decimal value.
    =(ROUND(K6,3)= ROUND(100*K$3,3))
    or BETTER yet change the formula in K3 to be =100*... so
    =100*XLOOKUP(LEFT($I5,3),LEFT('Rate Schedule'!$B5:$B16,3),'Rate Schedule'!C5:C16,"error")

Resources