Hi all,
First time post, let's hope i don't get the same kind of response I had elsewhere
I've created a dashboard in Excel, which has taken me some time. But it's there, and it works a treat.
However, I've recently found that when applying it to databases with a large volume of transactions it can take up to 1/2 an hour to refresh the pivot tables and charts within it!!! :O Whilst I accept that there will be a performance hit, I wouldn't have expected it to be quite so high, even though I'm using ODBC as the connection method to my SQL database.
This has led e onto moving it to a Power Pivot based solution, which I'm hoping will alleviate the problems I'm having dealing with large datasets.
The problem now is that I have a button which when clicked checks the ShowDetail property of an appropriate field, and then either sets it to True or False depending on it's current state.
The working code looks like this:
pf.ShowDetail = IIf(r.ShowDetail, False, True)
The code I'm having a problem with is this:
pf.DrilledDown = IIf(pf.DrilledDown, False, True)
The problem being that it returns false all the time!!!!
Any help would be most appreciated. (Y)
Bookmarks