I have several drillthrough actions defined, that were working at one time. For some reason most are no longer visible when I right click > drill through actions within Excel 2016. Has anyone experienced the disappearing actions, before? Any help is appreciated.
Seeing a mention of ASSP in your action which isn't working please check that ASSP for SQL 2014 is installed. You can download from here.
Related
I was wondering if anyone could help me to disable the Advanced Filter option in Excel 2013.
I have used the following to disable all other data ribbon options:
.Protect UserInterfaceOnly:=True
But advanced filter is still able to be selected. With this they can unfilter the data.
The following code used to work in older versions of Excel but I cannot seem to get it to work for Excel 2013:
Application.CommandBars("Worksheet Menu Bar").Controls _
("&Data").Controls("&Filter").Controls("&Advanced Filter...").Enabled = False
If anyone could help me out with this or point me in the right direction then it would be appreciated.
Thanks guys.
Solution Suggested
The approach will be hiding the button from the user interface: the advantage on this solution is that the code is not in VBA (entirely) so, is not that easy for the user to modify it (or know what is going on backstage).
Answer Explanation/Next steps
It's really a deep answer with many steps involved in it so, I'll just post guidance and some useful links, that way you may research about it first.
1. Download Custom UI Editor for Microsoft Office: this helps to modify the user interface for the document.
2. Look for tutorials; start to code there with something basic like adding a tab and a button, (this is a good one)
3. Back to Excel, look for life cycle and custom events, this is a good place to start
4. You'll need to catch the event when the Ribbon is loaded; in that time, you'd need to disable the button, these links (1,2) are useful to show the steps and some example workbooks for it.
5. Locate the ID for the button and disable it (Hint: The idMSO = AdvancedFilterDialog, if you 've followed the previous steps, it will make sense here-).
Further information/Answer Disclaimer
Excel is not a software that can handle security deeply; if you are trying to restrict the user somehow in the original file, you should try other approaches -IG: a copy of a workbook for reference only, while the master one is saved in a sharepoint only modifiable by people authorized for it-.
While FAQ in S.O is strict about referencing to other sites without using a proper reference for it, this is a deep step solution that would take pages to explain even a random example; appealing to the guiding topic, this answer should be ok.
As you can probably take out from the title, I have a problem on my CRM environment converting a fax entity to an incident (case), it is as you know an out of the box functionality. When I press the button on the ribbon to convert it to a case, I'm given the following error: "You must save the changes before you can convert this activity". And I have definitely saved everything before I do this.
I do have the latest rollup and it works for the other activity entities except from this one. Is there any chance someone had similar issues? If so could you share how you resolved this. Thanks in advance.
There is likely some code running on the form that updates one or more values on the page automatically. Code like that will cause the form to become "dirty". Which is what triggers the message you are seeing.
One way to solve it, is modify your code to perform a save after it make its changes.
I am confused with this feature in CRM13, please help.
In CRM11,
I added some options in the "StatusReason" field for "Inactive".
When i try to deactivate that record from the grid, it will ask you to select the status for deactivation.
When i try to deactivate the record from the form itself, then also same thing happened.
Now my CRM upgraded to CRM13.
In CRM13 ,
deactivation of record from grid will allow you to select the status that is added for the "Inactive" but,
deactivation of record from the form itself, will not allow you to select the status that is added for the "Inactive" rather than this, it will deactivate the record automatically.
Is there any big change happened in this CRM13 for this feature?
Any kind of idea will be appreciated. Thanks in advance.
Thanks,
Anish
I had the similar experience when deactivating the record from form level. There is no MSDN CRM article related to this. CRM 2013 brand new menu is designed to ease user navigation, free up screen space, remove pop-up windows, etc. Probably part of this strategy this feature has been depreciated. There is nothing being mentioned in CRM Rollup 13. http://support.microsoft.com/default.aspx?kbid=2891271.
The workaround is to hide the deactivate button and make a custom button to invoke a dialogue to set the relevant status reasons.
This was a bug in my CRM Online instance.
Now automatically this has been fixed.
I do not know how this is fixed..but I guess after some updates..this got fixed.
TFS2010- Work item Search Popup control is not working ,no error message is showing .Please share your valueable comments on it .Thanks in advance
http://support.microsoft.com/kb/931509 .Solved the issue
Despite work items not depend on the Data warehouse, but I think the problem that appears of the Data warehouse is critical because wrong date, and this can lead to error in everywhere; so the server is out dated and you need to adjust the time of the server instead of (1900)
I am facing problems with Refinement Panel in SharePoint 2010.
Please find below the issue:
Suppose we have Following refinement Custom Values as - Custom1, Custom2, Custom3, Custom4, Custom5. And then suppose Custom1-5 have things coming from Managed Properties.
I have uploaded adequate number of documents into the system. Now when I click on one of the values under Custom1 then filtering is done properly...and it shows Custom2, Custom3 if there are any document. I click on values under Custom2 and I could further drill down and get more specific results. All this is default functionality by SharePoint. I have not changed anything here.
But sometimes SharePoint is behaving strangely. If I click on one of the values under Custom3 (or Custom4, Custom5)...then all other filter options are gone. Only Custom3 and the value I clicked to select are shown. I know that the documents in this particular category have Managed Properties which exists under Custom1 and Custom2, yet those are not seen.
My client is after me saying that this is a bug, can anyone help me regarding the same. Am I doing something wrong is this is BUG/FEATURE by SharePoint. If it is a bug or feature please do share with me some document by Microsoft or others mentioning the same. I Googled a lot but could only find ways to use Managed Property etc with Refinement Panel.
Thanks.
Nitin
Its simple...just change the Threshold Value from 5 to 1. I did not know and wasted so much time running around. I hope this question may save some time for someone else.