Hello Joseph,
Sorry, you are right, I was lead to believe this was "standard". I just went and talked to the file Owners and they showed me the code they used to create this command. Then they tell me that it isn't possible in 2010 to edit the context menus like it was in 2003. Is this true?
Here is the code they used in the sheet:
Public Function getDataSheet(seco As Series) As String
Dim intStopWerte As Integer ' Variable für 1. Komma von rechts
Dim intStartWerte As Integer ' Variable für 2. Komma von rechts
Dim strWerte As String ' Variable für Größen(Y)-Werte
Dim dataSheet As String
With seco
' Position des ersten Kommas von rechts
intStopWerte = InStrRev(.Formula, ",") + 1
' Position des zweiten Kommas von hinten
intStartWerte = InStrRev(.Formula, ",", intStopWerte - 2) + 1
' Adressbereich für Größen(Y)-Werte
strWerte = Mid(.Formula, intStartWerte, intStopWerte - intStartWerte - 1)
dataSheet = Mid(strWerte, 1, InStr(strWerte, "!") - 1)
If Left(dataSheet, 1) = "'" Then
dataSheet = Mid(dataSheet, 2, Len(dataSheet) - 2)
End If
getDataSheet = dataSheet
End With
End Function
Sorry, some of it is in German.
Can this be done in 2010??
Thanks,
Matt
Bookmarks