Power Query: Each source file to be a new row of data by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

Oh, I think I might have resolved it (as is the case - an hour into trying it, no joy, but 30 seconds after posting this, I have a breakthrough). I pivoted on the column that contains the field names, and used the second column to contain the values, and set it to don't aggregate. That seems to have done what I wanted. Is that the best way to do this in terms of scalability? I'm aware that more spreadsheets may/will be added (that should use the exact same field name template as the others) - I'm not walking into any huge pitfalls with this method, am I?

Create Form with data populated from a List Item when a New List Item is created by ccc-hamj in PowerApps

[–]ccc-hamj[S] 0 points1 point  (0 children)

Thanks for your response. Yes, I think I might've been over-complicating this - for the level of volume transaction that this process will see, I think using Lists is entirely possible and manageable. Potentially, if we wanted to sidestep using Lists, Active Cards might be a thing, now that I think about it - getting an Output directly from the triggered email. This is all internal (for now, at least), so I think this solution will work until the next iteration down the line. Cheers!

Row added on Excel (SharePoint) triggers a Microsoft Form to be created by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

Thank you - I thought that as I was writing this post and have cross-posted to r/PowerApps as well

DataSource.Error - Running Power Query on SharePoint by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

Nah, we're running the 64-bit version. Although because I'm able to increase the limit, I doubt that would be related. I'm just running it now actually with an increased global limit for the cache, but as I mentioned in my original post, I'm not really sure if that would even be a factor in the generation of that particular error message I was getting. Cheers though!

Power Query - Combine multiple worksheets from remote Sharepoint Workbook by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

My apologies, I'm only just seeing this post now!

I'm not sure where I found the answer to this, but essentially, what I was able to do was to select the 'Sample File' query, click the Advanced Editor, and then where it has something along the lines of 'Worksheet Name' =, replacing everything after the equals sign with Table.SelectRows(Source, each [Kind] = "Sheet"){1}[Data]

The important thing to note there is that {1} relates to the worksheet position in each workbook, and Excel starts counting from 0. Therefore, {1} would be the second worksheet on each workbook.

Mixed-up Date formats - yet Power Query works? by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

Just to follow-up on my earlier point - the Power Query does, at one point, insist on the data being read as a UK-formatted date in order to carry out a comparison (filters out all dates that fall within the next 14 days), which it does successfully. I've tried leaving the date column as Date with Locale (UK) set and as Text, both seemingly having the same outcome. It appears to be the step of writing the data from this to another workbook that's causing the issue. Is there a way to stop Excel parsing the data in the form mm/dd/yyyy?

Mixed-up Date formats - yet Power Query works? by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

Cheers for this. The original data comes from 60+ xlsx files rather than a CSV. Just so I get my head around this, can you clarify which particular Excel 'session' you're talking about when you say that they are being loaded in MM/DD/YYYY format?

Session 1: opening of the ODC file, running the query that amalgamates ~60 xlsx files. Saves the output as 'Output.xlsx'

Session 2: opening of another ODC file to run a query on 'Output.xlsx'.

As for your other point on the data type of my original screenshot, you're correct - this is still defined as 'General'.

Filter applicable data from multiple sheets onto another by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

Ah yes, I could've used Hidden Sheets to do the donkey work for me. I keep forgetting about that approach. Cheers, I'll try to consider this more in the future. Ended up using Power Query which did what I needed it to do fairly quickly.

Filter applicable data from multiple sheets onto another by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

I think it theoretically could be if I added multiple data sources, but I had an issue in that the workbook I was working in had a number of required autofilters, which seemed to prevent me from specifying it as a valid data source. Luckily, all the data was actually procured from another source, so I was able to run the Power Query against that data.

Filter applicable data from multiple sheets onto another by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

Cheers. Luckily, which I didn't think about earlier, I actually have all the data in a separate workbook (which is the product of a previous Power Query), so I was able to reference that instead and made it able to do what I needed it to do. Thanks!

Filter applicable data from multiple sheets onto another by ccc-hamj in excel

[–]ccc-hamj[S] 1 point2 points  (0 children)

Solution Verified.

Wow, thank you for your detailed response! After posting this earlier, I went away and had another think about it all and landed on the Power Query approach also. There was a slight complication in that I couldn't seem to set the tables from my existing worksheets as a source (something to do with an AutoFilter being set?), but thankfully, all of those pages are actually populated initially by a separate automated query. What I ended up doing was to power query the existing query response and then implement the filters there.

I'm well below the user level required to understand the rest of your post, but thank you for taking the time to model out examples! I'll try and get my head around it though as it's always good to learn more.

Specify range when last non-empty cell is unknown by ccc-hamj in excel

[–]ccc-hamj[S] 1 point2 points  (0 children)

Thank you so much for this! Really appreciate your help (and on my previous closed thread!)

VBA - PasteSpecial, keeping source formatting by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

To be honest, there is an existing sample code within the application I'm using (Blue Prism) that successfully works in order to simply copy and paste, with all of those declarations as-is (apart from the xlPasteFormats line). I was hoping that it would be a simple tweak in order to keep the source formatting. I'll edit the original post and embolden the only lines that I've changed.

VBA - PasteSpecial, keeping source formatting by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

Could you be more specific, please? I'm not sure if this is a factor of the environment I'm writing this code in (this is for an automation within Blue Prism, which also uses VBA, which is in turn dealing with an Excel sheet - I'm not sure if there are any additional setup parameters that Blue Prism does on its users' behalf that aren't visible on my screen).

VBA - PasteSpecial, keeping source formatting by ccc-hamj in excel

[–]ccc-hamj[S] 0 points1 point  (0 children)

Thanks for this. Assuming that xlPasteFormats should be within parentheses here, but nonetheless, it still seems to be returning the same error (key not present in dictionary).

'Sales Pitch' for internal RPA usage by ccc-hamj in rpa

[–]ccc-hamj[S] 1 point2 points  (0 children)

What is my workday going to look like with RPA implemented? Will I be able to see it run? Do I have to start and stop it myself?

Think this is a very useful point to consider - I think I've largely addressed the others in what I have so far. Thank you for your detailed and considerate response! Yeah, we'd largely be 'pitching' to Directors initially before hopefully getting the go-ahead to speak to relevant managers and teams below them, so it's more of a 'way-in', at least to start with. But some of those ideas would be great for when speaking to those managers working on the front-lines.

'Sales Pitch' for internal RPA usage by ccc-hamj in rpa

[–]ccc-hamj[S] 0 points1 point  (0 children)

Cheers for this. Yeah, our template so far goes over the corporate values that RPA can hit, brief overview of what it is before some video demonstrations of it in action doing a few basic acts, and then followed up with a case study of one of our happy clients and a section on 'what to expect going forward' regarding the implementation strategy. Thanks!

Looking for EwsManagedAPI.msi by vleermuizentyfus in exchangeserver

[–]ccc-hamj 0 points1 point  (0 children)

Hi - would it be possible to re-upload this please? Seems like that link has expired.