HI there,
First post (I defected from Excel-L!) - hello all.
I'm opening another application (Tableau) from within Excel, connecting Tableau directly to the current file. I am building the following string to use in the Shell command:
"C:\Program Files (x86)\Tableau\Tableau 7.0\bin\tableau.exe" "C:\Users\acotgreave\Dropbox\TableauReshaper\test data.xlsx"
When I run this from the command line, Tableau opens maximized. However, when I run the same code through a VBA Shell command, Tableau opens in a minimised state:
' construct the command line and execute it
strCmdLine = Replace(strTableau, "%1", ActiveWorkbook.FullName)
Shell (strCmdLine & " /max")
Any ideas how I can force the other app to be maximised?
Thanks
Bookmarks