I have a Excel workbook with two worksheet (sheet1 and sheet2). I've some cell of sheet1 referenced from sheet2. I've done this using formula like this...
=sheet1!C2
This should change the derived cells of sheet2 if I change values in sheet1. but unfortunately it's working at first load but not after that.. how can i refresh the derived cells using macro
Application.ScreenUpdating = True
andApplication.Calculation = xlCalculationAutomatic
– user2140173