This is another one like Calendar...it generates a column but we can't do this in DAX, right?
CalendarAuto DAX Function
This is another one like Calendar...it generates a column but we can't do this in DAX, right?
CalendarAuto DAX Function
Hi all
I have Office 365 Home, using Office 2016 and am trying to install the Excel PowerPivot add-in. However, when I go to the add-ins, this one doesn't appear.
I also have another laptop with Office 2013 and it doesn't appear on this one either.
Does anybody know how I can install this add-in on these two versions? I'm really struggling.
I have today actually spoken to somebody at Microsoft and they didn't know why I can't do it either..... I know that for some reason, this add-in is only available with certain versions and I don't know which ones.....this has been made far more complicated than it needs to be.
Thank you.
Louise
I’m using Excel 2007 and I was hoping you could help me.
I have 3 lists for each month in the quarter listing $ amount of taxable sales that was made per county. Obviously each month the counties can vary. I now want to make a list for the quarter for each county how much sales for each month and then total it up.
I was wondering how can I make a formula that will go thru all counties on Mth 1 then check mth 2 check if its listed already if not add it then the same for mth 3.
I want it to be a formula not VBA or Macro.
Thanks
David
Joseph DiSabato
Good Day Microsoft Community,
OS Windows 10 [Current]
Office 2013 Standard 15.0.4569.1506
When my user opens a spreadsheet from within Excel, they open normally. When my user opens a spreadsheet from the Desktop or from One Drive, an error stating that "There was a problem sending the command to the program." appears.
We've tried:
-Updating Excel and Windows 10.
-Resetting File Associations, as well as, setting compatibility mode.
-Checking and unchecking the "Ignore other applications that use Dynamic Data Exchange (DDE)" check box.
-Office repair.
-Disabled the one 3rd party Adobe Add-in for excel, as well as verifying the Microsoft Excel Add-ins were not active.
The only posts we could find address this issue for OSes leading up to but not including Windows 10. If anyone has any further suggestions or knows of Windows 10 particulars that cause this age-old problem, any and all help would be greatly appreciated.
Joe
Hello,
I have MS Office Professional Plus 2016. I wanted to check Power View and I added it in. When I try to use it I get the error:
"Error HRESULT E-FAILhas been returned from a call to a COM component."
I'm on a PC with Windows 10 Pro. Any ideas why Power View is not working? Thank you in advance for any help.
Hello,
I have recently upgraded my computer to windows 10. I am using office 2007. When I open a macro enable work books (.xlsm file) I used to get the message as shown,
How to solve this ?In another computer (windows 10, office 2010) error get solved when I install fixit from here.
Is there any similar fixit for Office 2007 ?
Please help me.I have a userform that has a combobox control on it. The rowsource property is set to a named range
My data source sheet has a column that is set up with a data validation where the criteria is set as a list and the source is the same named range as the combobox.
I have an update button on the userform for the purpose of updating my datasource sheet with the values from the user form
However when I want to update the field on the sheet that has the data validation on it, the value from my combobox does not get transferred to the sheet. Below is the code Im using:
Cells(currentrow, 2).Value = Me.cboCatg.Text
Why isn't the cell updating and how can I transfer the value I select from the combobox on the userform to the cell that has the data validation set?
I'm using similar code for the other form fields and my datasource sheet gets update with the values. However the other cells do not have the data validation set to a named range.
Keith Aul
Hi Guys,
I am having difficulties trying to convert text to numbers in Excel.
I have a column with subtraction formula I would like to substitute with variables and then calculate the final number.
I use =SUBSTITUTE(D4, "XW", AE4) function to look for XW then substitute with width column.
https://support.microsoft.com/en-us/kb/291047
I tried all methods listed in the above article but still can't convert text to numbers in Excel.
Please help!
Best Regards,
Michael Mei
Thanks, Michael Mei
http://mssharepointbi.com/about/
Microsoft Community Contributor 2011 Award
MEC
Hi,
I'm trying to copy and paste macros from 100s of files to 1 master file in excel. I'm using macros to do this however I have to open or download a file from an server and each file has a different name. I'm encoutering trouble using the macro I created because after creating the macro using the 1st file all the subsequent files have different names. My second issue is that how do I make the data paste into the next empty row rather than replacing the data in the first row?
I have pasted what I have done so far but I was wondering if someone can take a look below and let me know how I can adjust the code so the macro copies from the file that is open? Can someone also check if I properly adjusted the macro to paste the data in the next availble row?
Sub HandoffDocTestingSept9()
'
' HandoffDocTestingSept9 Macro
'
' Keyboard Shortcut: Ctrl+Shift+R
'
Range("A1").Select
Selection.End(xlDown).Select
Range("A4").Select
Windows("Copy of Handoff Template for testing on Sept 07 -2.xlsx").Activate
Range("C3:E3").Select
ActiveCell.FormulaR1C1 = "Year Country [+ Extension] - Client Name"
Windows("Hand off doc working doc v.4.xlsx").Activate
Range("A4").Select
ActiveCell.FormulaR1C1 = "Year Country [+ Extension] - Client Name"
Range("B4").Select
Windows("Copy of Handoff Template for testing on Sept 07 -2.xlsx").Activate
Range("C4").Select
ActiveCell.FormulaR1C1 = "Paris"
Windows("Hand off doc working doc v.4.xlsx").Activate
Range("B4").Select
ActiveSheet.Paste
Range("C4").Select
Windows("Copy of Handoff Template for testing on Sept 07 -2.xlsx").Activate
Range("C11").Select
ActiveCell.FormulaR1C1 = "3/11/2016"
Windows("Hand off doc working doc v.4.xlsx").Activate
Range("C4").Select
ActiveCell.FormulaR1C1 = "3/11/2016"
Range("D4").Select
Windows("Copy of Handoff Template for testing on Sept 07 -2.xlsx").Activate
Range("C13").Select
Selection.Copy
Windows("Hand off doc working doc v.4.xlsx").Activate
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Windows("Copy of Handoff Template for testing on Sept 07 -2.xlsx").Activate
Range("C20").Select
Application.CutCopyMode = False
Selection.Copy
Windows("Hand off doc working doc v.4.xlsx").Activate
Range("E4").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Windows("Copy of Handoff Template for testing on Sept 07 -2.xlsx").Activate
Range("C21").Select
Application.CutCopyMode = False
Selection.Copy
Windows("Hand off doc working doc v.4.xlsx").Activate
Range("F4").Select
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("G4").Select
Windows("Copy of Handoff Template for testing on Sept 07 -2.xlsx").Activate
Range("C22").Select
Application.CutCopyMode = False
Selection.Copy
Windows("Hand off doc working doc v.4.xlsx").Activate
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
Range("A1").Select
Selection.End(xlDown).Select
Range("H4").Select
End Sub
I have Excel 2016 standalone version with PowerPivot. I only bought it two months ago specifically for the PowerPivot add-in.
Since then, PowerPivot consistently fails to load data models and only occasionally succeeds. The current data set I am attempting to load is very small and I only created it with the purpose of testing my problem. I have 4 tables in the same Excel workbook (1 fact / 3 dimension) and the fact table has fewer than 1000 rows. The dimension tables are have fewer than 20 rows.
When I press the button for Manage Data Model, I get the following message:
PowerPivot is unable to load the Data Model. <OK>
I also get the following message:
We couldn't load the PowerPivot add-in. First try Office Repair to fix this issue. The error below should help if that doesn't work. PowerPivot cannot connect to Excel because Excel is busy. Please try again in a few minutes.
I attempted both Quick and Online Repairs from the Control Panel. I have rebooted. I have uninstalled and and reinstalled. No other applications are open. Nothing seems to work.
My laptop is fairly up to date - Windows 8.1 on i5 with 12GB RAM and 64 bit OS
Using Excel 2016 MSO (16.0.7127.1025) 64 bit
Any assistance would be appreciated.
Hello I would kindly ask for help. I am trying to get data from an webservice (created by me) into an Excel file. I saw it is very simple doing this with the option Data -> From Other Sources -> From XML Data Import and here you have to put the link of the web service. But it does not work. Should be made in a special way the webservice?
Thanks in advance, Ciprian LUPU
I started getting this error in my Excel file with some macros."Excel found unreadable content in file error. Do you want to recover the contents of this workbook? If you trust the source of this workbook, click Yes"Then I click Yes.Then window with this appears:
"Repairs to fileExcel was able to open the file by repairing or removing the unreadable content.Removed Records: Formula from /xl/worksheets/sheet2.xml partRemoved Records: Formula from /xl/calcChain.xml part (Calculation properties)"
And here is the long that they provide in the link:<?xml version="1.0" encoding="UTF-8" standalone="true"?><recoveryLog xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main"><logFileName>error094640_01.xml</logFileName><summary>Errors were detected in file '\\fscommon\misc09\BI Team\Remedy BI Tool\Weekly Dashboards\CRQ\CRQ-150417.xlsm'</summary><removedRecordssummary="Following is a list of removed records:"><removedRecord>Removed Records: Formula from /xl/worksheets/sheet2.xml part</removedRecord><removedRecord>Removed Records: Formula from /xl/calcChain.xml part (Calculation properties)</removedRecord></removedRecords></recoveryLog>
Dear All,
I have currently the version non olap of pivot table with excel 2010.
How can i deploy this version?
Thank you.
(environment: Excel/Access 2016, 32-bit, via Off365 Home on Win10Anniv Pro x64)
I'm trying to use Excel Data Query to get data from some complex queries in an Access database into my Excel worksheet. This works fine for tables in the Access database and for queries if they have no associated parameters. But I've some up with two questions:
1) Apparently, I find in Google re. Excel '07 or so, there used to be a way in MS Query to save the defined query as a .dqy (IIRC that was the extension) file and then reuse it in other Worksheets. I can't find a similar way in Excel '16's Query Editor to save/re-use an existing Data Query definition that doesn't involve opening an Excel workbook that has the query you want and doing some copy/paste. This is an annoying problem but not a deal-breaker for my use case. Is there a way I'm not finding to save and re-use a defined Data Query in Access 2016?
2) Apparently, I find in Google re. Excel '07 or so, there used to be a way to supply parameters to the Access query if that Access saved query was parameterized. These values could, apparently, come from a worksheet range reference. I can't find a way to do that in Excel '16. When creating a new Excel Data Query from Access, the parameterized Access-side queries are not even shown in the list of "table and view tables" in the second step for creating a Data Query. This is a deal-breaker for my use case. Is there really no way to use Excel '16 Data Query to access an Access parameterized query and pass it the parameters?
Thanks in advance for any help!
I'm running Excel 2007 on Windows 8.1, but keep getting these application hang error. When i get these it may take excel as long as 1 minute to open the file. Any suggestions on how to resolve these errors?
The program EXCEL.EXE version 12.0.6750.5000 stopped interacting with Windows and was closed. To see if more information about the problem is available, check the problem history in the Action Center control panel.
Process ID: c70
Start Time: 01d20cf53eb0bff9
Termination Time: 0
Application Path: C:\Program Files\Microsoft Office\Office12\EXCEL.EXE
Report Id: d2ac4b40-78e8-11e6-983f-3085a9a221ab
Faulting package full name:
Faulting package-relative application ID:
Details on Error---xml view
I am aware of the workaround here : https://support.microsoft.com/en-us/kb/2556284 but it's just not feasible to expect our clients to use this every time they open the document.
Does anyone know whether Microsoft are aware of this issue and are working on a fix? The support ticket raised with them did not really shed too much light on the situation and I was directed here.
Many thanks in advance!
I got this message when trying to save an Excel file containing extracted data, histograms and XY-scatter diagrams of data.
Best regards
Ove
Hi,
Is it possible to use the IF-fuction to categorize a value into an interval?
Explanation:
I have a result from an analysis that needs to be compared to different classes (of pollution). These classes have intervals f.ex. "8, 8-20, 20-50" etc. If my value is 36, it would fall in the 3rd class category.The idea is to be able to put the
results into a column and immediately see if the values are in a particular category/ interval.
I have tried:
=IF([cell with resultt]>8;"class 1";IF([cell with result]<20;"class 1";"no"))
...which didn't work.
Any helpful tips?
Kirsten Kleveland