Related Posts
I'm looking to find a job like the Forward Deployed Engineer role Palantir Technologies in the UK.
I have become hooked on finding a job that involves solving the kinds of problems they presented during their interviews. Although I got to the final round my performance anxiety got the better of me (I think I wanted the job a bit too much...). I will reapply after working in a similar company.
Is it "deep tech" / "data science" or "smart enterprise" that they're doing? Any advice welcome.
Hi folks ,
I am having around 7.5 yrs of experience. One offer with IBM (ISDL) ,role(senior staff engineer) is in pipeline. In what ranges do they offer ctc, please provide some insights, so that i can negotiate. I am excited for this role because i never had a chance to work in product company. The location is also not my native and i have been told wfh is not possible and ill have to relocate.
IBM
sales opening in USA
More Posts
Need 11 likes to enable DM
Who says consulting pays well? Lol
Taylor Swift is older than my MD. 🤯
Additional Posts in Excel Genius
Time to convert to xlookup
Sounds like you need to use python. There's an excel package you can use to do that without opening excel and since it's all data it'll be easy.
Thank you, I will attempt on python 🥲 …. Not very good at python but I oughta learn.
Yea, you can use VBA to transfer data between Excel workbooks. Can even transfer data to other Microsoft products, like word, outlook and Access.
Basically you have to write into the VBA what WB you want to open or use a file picker. Then also write.into the VBA where it should go in the workbook.
https://youtu.be/gFwXBjLto3c
That video looks like it could help. I haven't watch the whole thing but it looks like it should be work.
It sounds like PowerQuery is the best bet for this use case if you want to stay within Excel. Once you create the appropriate query you can then refresh it with VBA if you need to. You might encounter some Privacy errors if you reference a cell value in your query when choosing the data source, but you can fix that by setting ThisWorkbook.Queries.FastCombine = True
Does something like this look helpful? https://www.xelplus.com/power-query-combine-files-folder/
Dynamically changing the folder/file you want to look at adds a few steps, but this seems like generally what you're trying to do.