Hi Forum,
Nice to be back and Happy New Year. I have a rather simple question that is humbling me:
I have the following function which refreshes a series of Bloomberg data on my sheet, waits 4 seconds for the info to be loaded, and then call a function whose purpose is to transfer the downloaded data onto another sheet.
What I want is a way of displaying a textbos that will say: "Please wait while we retrieve your data". This textbox appears Inmediately before the RefreshEntireWorksheet, and should automatically close after the four seconds pause given for the values to update.![]()
Sub BBGRefresh() Application.Run "RefreshEntireWorksheet" Application.OnTime (Now + TimeValue("00:00:04")), "BBGTransit"
I thought that maybe this cannot be done this way and it would be easier to open the text box in the function and then close it in the function BBGTransit. Anyhow, I donot know how to Open and close a text box ( I do not want the "OK" option from msgbox or inputbox)
Thanks in advance
Bookmarks