Forum Widgets
Latest Discussions
Error message to say can't install add-ins (where ones I have stop appearing on toolbar)
Hi, I have an accountancy add-in for Excel which normally appears on my toolbar when I load Excel up. For some reason it wasn't there all of a sudden so tried to load it again as an add-in but just get an error message at the bottom of the screen to say that it can't be loaded and to try again later. Tried chatting with Microsoft Support who were no help at all and tried to blame it on the third party software not Excel until I tried loading other add-ins (including Microsoft ones) and get exactly the same message. Tried logging in and out of my account and shutting down and re-starting but to no avail. Any ideas/solutions would be most welcome! Thanks, David1925Aug 04, 2026Copper Contributor20Views0likes1CommentOffice Scripts - Working With Multiple Worksheets
I'm trying to write a script which writes data, via Power Automate, to multiple worksheets inside one workbook. I'm new to office scripts, so I'm not sure if I can do this in one script or if I have to do a separate script for each worksheet. Here is an example of the code: function main(workbook: ExcelScript.Workbook, Title: string, Type: string, Problem: string, Part: string, Date: string, Frequency: string, IDNumber: string, Comments: string, Originator: string) { let selectedSheet = workbook.getWorksheet("Issues"); //Populate All The Data selectedSheet.getRange("B6") .setValue(Title); selectedSheet.getRange("D6") .setValue(Type); selectedSheet.getRange("F6") .setValue(Problem); selectedSheet.getRange("B8") .setValue(Part); selectedSheet.getRange("D8") .setValue(Date); selectedSheet.getRange("H8") .setValue(Frequency); selectedSheet.getRange("K8") .setValue(IDNumber); selectedSheet.getRange("B9") .setValue(Comments); selectedSheet.getRange("F8") .setValue(Originator); } So that is the end of what I'm doing on the first worksheet, and it works perfectly, and now I want to do a similar thing on three more worksheets, in the same work book. Is there a way for me to add something to the code to start the process on the next worksheet? It won't let me use the "let" statement again to change the worksheet, which I thought might be how it worked, so I'm at a standstill now. Thank youSolvedSargentSynergyAug 04, 2026Tin Contributor4.9KViews0likes4CommentsGetting error when adding Add-ins in Excel
Hi all, I have trying to install add-ins to microsoft excel using a M365 Personal Account, and i keep getting an error "Add-in Error: We couldn't connect to the '{0}' catalog server for this add-in" screenshot attached below. I have tried on both Excel Web and and on the desktop Excel app and still the same issue, I have already had a session with microsoft support and they were not able to resolve this for me and directed me to this forum, Any help will be appreciated thanks in advance.Uzair_NadeemAug 04, 2026Copper Contributor43Views0likes2CommentsStock symbol SKHY is missing in Excel's Stock data type
I have been frustrated trying to report a stock ticker symbol that is missing from Excel's Stock data type. SKHY is the ticker symbol for SK HYNIX INC ADR on NASDAQ. Excel responds with the following error when attempting to convert this symbol to a Stock data type: Data Type: Stocks No results found for "SKHY". How do I report this issue so that it can be fixed?Carl32351Aug 04, 2026Copper Contributor140Views0likes4CommentsNesting a COUNTIF With IF To Evaluate A Formula
I have a sheet called Employee Training Matrix that I use to lookup data in a tab called Documents to see if there has been a date entered into a range of cells. Depending on how many dates are entered, the sheet will calculate the percentage where a person has been trained for a particular job. For example, the safety training requires three documents, so the formula I use for this lookup is "=COUNTA(Documents!C3:C5)/3". The issue is that some people do not require training in some areas, so I want to have the sheet to return a blank cell that I will format with a conditional format rule. Is there a way to do an IF and COUNTIF formula that will return a blank cell on one sheet when the second sheet has no date and run my COUNTA formula if there is? Or is there another way to address this? Thank you.SolvedRangerLGAug 03, 2026Copper Contributor125Views0likes6CommentsHow to move a cell value using an RTD formula (pulling in live updating data) when it changes?
Hi, I am using Interactive Brokers TWS trading platform and they supply a demo excel file that has RTD formulas to pull in a list of available live data trading prices such as Bid, Ask, Last, etc. The RTD connection does not allow you to pull in historical data for the trading prices mentioned above. What I am want to do is the following, if possible: The Last price traded for the MES Futures contract is pulled into cell F3 by using the following formula: I am currently connected to the TWS trading platform and the value in cell F3 is 4761.25 As soon as the markets reopen this value will change continuously. I want to be able to capture the price of 4671.25 that is pulled into cell F3 and move it down by one cell as it changes - for whatever number of cells I decide to capture. For example, if I decide to capture the Last 20 prices, then I want to populate the range F3 to F22. Once I can move the changing values into the cells below, I can then use conditional formatting to change the cell colors based on the criteria I use, which is my objective of the exercise. Thank You.Article43Aug 03, 2026Copper Contributor916Views0likes2Comments
Tags
- excel43,905 Topics
- Formulas and Functions25,404 Topics
- Macros and VBA6,571 Topics
- office 3656,344 Topics
- Excel on Mac2,746 Topics
- BI & Data Analysis2,491 Topics
- Excel for web2,020 Topics
- Formulas & Functions1,716 Topics
- Need Help1,703 Topics
- Charting1,703 Topics