About 50 results
Open links in new tab
  1. vba - How I make excel show a await message while execute a …

    Dec 27, 2019 · I tried with "Application.StatusBar = "Refresh File. "", but the user can´t see the sentence, the best way is a msgbox with the message "Await a moment", and, when the …

  2. vba excel: Breaking into vba code when a message box is caught …

    Oct 23, 2018 · Once the Messagebox is up, you can't really go back to the vba developement window to stop the program, because it is a modal window that takes over then entire vba. Any …

  3. Formatting text in messagebox excel Vba - Stack Overflow

    The message is displayed in a dedicated UserForm with dynamically created labels for each formated text string and dynamically created (up to 6) command buttons.

  4. excel - How to show a Message Box when the value of a formula …

    Jun 9, 2023 · But when I tried to write some VBA code (See below) using a 'Private Sub Worksheet Calculate ()' I quickly found that because the cell value remained 1 after I clicked …

  5. excel - VBA code to show Message Box popup if the formula in …

    Apr 4, 2012 · I don't think a message box is the best way to go with this as you would need the VB code running in a loop to check the cell contents, or unless you plan to run the macro …

  6. excel - Multiple variables in a message box - Stack Overflow

    May 5, 2014 · I'm looking to present multiple variables into a messagebox: ID, Customer Name, Date Added, Venue and Status. At the moment, I can only get the ID to display, the other …

  7. excel - Message box when power query connection refreshes

    Jul 13, 2021 · Message box when power query connection refreshes Asked 4 years, 6 months ago Modified 4 years, 6 months ago Viewed 4k times

  8. Pop up message box when a certain value is entered in a cell

    May 21, 2019 · MsgBox "Some message" End If End If End Sub That means: If A2 is Selected AND any cell in this worksheet hat changed, the macro will check If ("A2").Value = "OH") If …

  9. excel - How to show message box until calculations are done?

    Nov 13, 2020 · Well, that was exactly the question: "Box until calculation is done." it will automatically close when calculation is done, if not it will stay. Note that VBA can as always be …

  10. excel - VBA : title on message box - Stack Overflow

    Apr 4, 2021 · End If If Not Intersect(Target, Range("Ma_date")) Is Nothing And VarType(Target.Value) <> vbDate Then MsgBox ("Entrez la date en format jj/mm/aaaa") End …