Heading
so I'm starting to learn really soon abroad, there-for ill be needing to handle my own billings.
i would like to handle it in EXCEL form.
but the problem is that i have different currencies EUR,USD,HUF and ILS.
Problem
adding to new lines to stock .price (currencies) so it'll keep all dates and it'll be easy to keep track
tried doing it with macros (found out i don't really know how to)
cant keep currencies from different date and adding "today" automatically every day
thanks for the help for who can help.
if anybody has a different way / solutions how to handle money management with different currencies (when i need total in 1 currencies) then i would like to hear your idea and learn from you. thanks
similar to
XE Travel Expense Calculator
https://www.xe.com/travel-expenses-calculator/
Related
Don't laugh, but, from time to time, my friends and I host a multiple-course KFC dinner, and I have a spreadsheet to optimise the order. This is to make sure we order the right combination of 'bucket'-type items (i.e. SKUs that contain multiple pieces, often of different types):
to minimise leftover items
to reduce the total cost
Here is the spreadsheet I currently use, and here's a screenshot:
To use it, you first specify the number of participants in A2, and what you want each person to have in E2:E6 (we're really only interested in the chicken, so 'sides' are treated as generic to simplify).
Here's the manual part, that I'd like to improve.
The next step is to look at the ideal totals for each item (F2:F6), and to try to set the right quantities (H12:H20) of the 'bucket'-type SKUs that I have recreated (A11:G20), so that the output totals (H21:M21) match the ideal totals (F2:F6).
The optimisation part is to get the deltas (H22:M22) as close to zero as possible, and to get the total cost (N21) as low as possible.
So, my question is: is there a way to do this better? I think Excel has some sort of Solver functionality, but I'm afraid I don't know how I'd go about even starting to use that, as my Excel skills are pretty rudimentary. Oh, and in case it makes a difference regarding functionality, I'm using Excel for Mac v16.37.
Any thoughts gratefully appreciated! :)
I can't take any credit for this, but am happy to say that GSerg left me a couple of comments that pointed me in the right direction, and I now have Solver set up to organise my chicken parties!
Here are the parameters for anyone who is curious:
It's my first time posting a question to this forum. Though I have found answers here many times before, I have been unable to find a solution to my current predicament.
I work in a call center and each week I need to analyze data from the thousands of call that took place over the week. I'm new to programming in Excel-VBA but I've been able to get pretty far.
The data is produced by a third party program and the format is nigh unreadable. Much of the programming I've done so far has been geared towards making the data more organized. Now, I'd like to get into more analysis.
The data is arranged by employee number (NOT in order, though). Each employee takes several calls over the course of the week, some for which the customer takes a survey. It's the survey scores I want. I want to take the average of all the surveys for each employee and then display that average in the same row as each of the entries.
Example
The yellow highlighted area is what I want to add. Any ideas? Thanks for any help in advance!
No need for VBA. If you have the supported version of Excel you can use AVERAGEIF. If not you can use below formula.
Enter as an array formula by pressing Ctrl+Shift+Enter when exiting cell edit mode (instead of just enter).
=AVERAGE(IF($A$2:$A$13=A2,$B$2:$B$13))
Then copy down for all rows.
I just want to thank you guys in advance. I think you guys are doing a great job in helping people out with programming stuff. Pats on the back for all of you.
Here is what I've been working on: I have daily stock price return data on about 4000 stocks. I want to add them to my portfolio after observing their performance for 12 months. I will choose the top 10% best performers and bottom 10% worst performers. I will create multiple portfolios over a period of time. I have done that with no problem.
I want to use the INDEX function to calculate the daily return of my portfolio. Not all 4000 stocks are in my portfolio, about 300 stocks are in my portfolio at any given time. The daily portfolio returns will be calculated by multiplying the weights (they are equal weighted, so 1/300) to that stock's return on the specific date. I assume it has to do with a combination of INDEX, SUMPRODUCT, and IF or MATCH functions.
I have been thinking this for a long time and I just can't get to the bottom of it. I have attached pictures for a portion of what I was working on. I think will give you a good picture of what I'm trying to do. I bet this is such an easy thing for you guys. I hope you can help me out! Thanks again!
PICTURES:IN or OUT portfolio & Stock's individual returns
Charles
Not sure I understood your problem, but here is a trial suggestion:
You get data for 4000 stocks while you are monitoring 300. So, you need to find the correct one within your sheet (there will be 3700 that will not match anything).
If you have your stocks listed in, say, column "A", you could use the function LOOKUP (well explained in the Web). If you need to get the row of your stock, you can use the function MATCH.
If this is not what you are looking for, it means that I (at least) did not understand you, so you would need to add details to your question.
If this has been discussed, I apologize. My boss just gave me a last minute project that needs to be completed by Monday and I am hoping someone could help tell how to complete this in a matter of minutes, not hours. I have very basic excel knowledge unfortunately, I will try to explain the best I can but I apologize in advance if there is something I didn't include or should know.
In my spreadsheet, D1-D34 has every model # of a specific brand that my company has sold last month. On a separate website, there is a chart that lists a "reward" associated with particular model sold. I can copy and paste that list into excel. When I do that, the eligible "model's" are on D56-D975, with the price associated each are on E56-E975.
Is there any formula that I can run that will basically do all of the manual work for me so that if one of the models in D1-D34 match one of the models in D56-D975, then the "reward" associated would appear in E1-E134?
Thanks a bunch. Hopefully I can get this resolved quickly and have some sort of weekend with my family.
InE1 enter:
=VLOOKUP(D1,$D$56:$E$975,2,FALSE)
and copy this down thru E34
I use GV for business and have since about 2011. Over that time I've amassed about 10,000 calls with various clients. I'd like to analyze this data to understand things like what days of the week did I have the most calls, what months had the highest call volume, what hour of the day has the highest call volume, et cetera. (Eventually I would also like to compare that to my Google Calendar data to analyze my conversion rates for a given month, but that's step 2)
My question is, is there any easy way to do this short of actually learning to use Excel? Are there any free or relatively cheap statistics programs that will cut some of the work out for me? It's easy enough to clean the data and drop it into Excel, but there are so many intermediary steps between having a good clean data set and actually getting a histogram out of it that it's starting to feel like it isn't worth it.
I have a list of about 10k calls in this format:
Col.A Col.B Col.C
client date 24hr time
I'm not particularly concerned with who the client is... I just want to analyze the second two columns.
Any help at all would be greatly appreciated.