I made a VBA function which turns my raw data into a table format since I want to use a pivottable for charts. The problem is that my file need to run on excel online and VBA is not running in a cloud environment.
Is there a way to do this with functions/power query/...
Thanks in advance
Took a while but i managed. It is in fact Excel online compatible Each formula is displayed above the corresponding column. I added some data to make sure it could handle extra data.
=IF(F8<>"",ROWS($G$7:G7),NA#)
=AGGREGATE(15,6,$G$8:$G$32,ROWS($G$7:G7))
=IF(ISNUMBER(H8),IF(ISTEXT(INDEX($B$6:$C$32,H8,1)),INDEX($B$6:$C$32,H8,2),I7),"")
=IF(ISNUMBER(H8),IF(ISTEXT(INDEX($C$7:$D$32,H8,1)),INDEX($C$7:$D$32,H8,2),J7),"")
=IF(ISNUMBER(H8),INDEX(E$8:E$32,$H8),"")
=IF(ISNUMBER(H8),INDEX(F$8:F$32,$H8),"")
I am looking to use a VBA in excel to copy rows/columns of data from my organisation's trading platform (Fidessa) to an excel workbook. The problem I've encountered however is that Fidessa doesn't have an excel plug-in as standard. So is there a way for excel or VBA to automatically copy and paste fields of data from external applications such as Fidessa?
I'm relatively new to VBA so any help would be welcome, thanks!
Used VBA code to copy data as screenshot but this is not suitable. It needs to be the data rows/columns from Fidessa copied across to Excel in order for it to be viable/functional.
In current excel sheets I work with with data import/refresh via ODBC connection where I import data from our ERP system into excel 2010. When refreshing data to excel, the existing data is deleted and replaced with the newly imported data.
Now I want to create a log file, so im looking for a way to add data to the already imported and existing data in the excel sheet. The import data properties do not offer me that functionality. Any suggestions to implement this with VBA / Macro?
Thank you very much for your suggestions.
I have data in the following format:
And I want to transform it into the following format in either Excel or Google Sheets:
Any suggestions on how to complete this?
Use a pivot table in Excel. I do not get exactly the same layout, but it comes close.
We are using Excel 2016 Add-In to load data from DB to Excel 2016 (few Excel 2013). There is a column 'Status' in Excel. Currently it is simple text cell. We need Excel drop-down list in Status cell (refer below example image).
We are using JavaScript for loading Excel 'Office.context.document'. We need the solution in JavaScript.
Please provide a solution in JavaScript, C# or Insert HTML in Excel etc.
Thanks in Advance...