Hi,
I have an excel dashboard which has a large data set and when a user changes certain options the calculations can take between 2 to 4 seconds to update.
I tried to create a message that popup when the user changes asking them to wait, see below code:
msg = "Calculating...Please Wait"
MsgBox msg
Do
Loop Until Application.CalculationState = xlDone
I tried the above on the combo box change event, the sheet calculation, the combo box click.
However the issue I have is that the message does not pop up until the calculations are complete which was not the purpose.
I looked at a userform option but can only find code for macro or sql query which does not fit my issue?
Any ideas on how to resolve or any other options?
Thanks in advance to all that looks or helps out
John
I have an excel dashboard which has a large data set and when a user changes certain options the calculations can take between 2 to 4 seconds to update.
I tried to create a message that popup when the user changes asking them to wait, see below code:
msg = "Calculating...Please Wait"
MsgBox msg
Do
Loop Until Application.CalculationState = xlDone
I tried the above on the combo box change event, the sheet calculation, the combo box click.
However the issue I have is that the message does not pop up until the calculations are complete which was not the purpose.
I looked at a userform option but can only find code for macro or sql query which does not fit my issue?
Any ideas on how to resolve or any other options?
Thanks in advance to all that looks or helps out
John