Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

analyst excel add-in macro 1

Status
Not open for further replies.

Larra

IS-IT--Management
Nov 24, 2005
2
US
Hi i made an excel macro that save all the views opened in the excel worksheet, but now i am trying to get rid of all that annoying confirmation boxes. Do anyone have any ideas???

Thanks
 
Application.DisplayAlerts = False ?

soi la, soi carré
 
It didnt work, i thought it did, but the real problem is the Analyst warnings for refreshing the cubes.
Sub SaveCube()

ActiveSheet.Shapes("Text 8974").Select
ActiveSheet.Shapes("Text 8974").Select
Selection.Characters.Text = "Salvar Información" & Chr(10) & "" & Chr(10) & "" & Chr(10) & "" & Chr(10) & "" & Chr(10) & "_" & Chr(10) & "Unidades!analyst_view_2"
With Selection.Characters(Start:=1, Length:=31).Font
.Name = "Tahoma"
.FontStyle = "Negrita"
.Size = 12
.Strikethrough = False
.Superscript = False
.Subscript = False
.OutlineFont = False
.Shadow = False
.Underline = xlUnderlineStyleNone
.ColorIndex = xlAutomatic
End With
Range("F10").Select
Application.DisplayAlerts = False
Application.Run "Analyst_SaveButton"

End Sub
 
Might be worth opening the Analyst_SaveButton package and have a look/tinker in there.
No disrespect, but posting in the VBA forum also might bring assistance with such.
Happy Friday and thanks for the star.
lex
[smile]

soi la, soi carré
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top