Forum Discussion
Excel inputting data
Question 1:
Assuming your date is in cell A1 you can use this formula to change the format:
=TEXT(A1,"dddd-dd")Or if you want to just reformat the date in place use FormatCells/Custom/dddd-dd in the "Type:" input Box
Question 2:
There are so many different ways to accomplish this. My go-to is the Index function
=INDEX(B:B,MATCH(E2,A:A,0),1)Where:
B:B is column with the data you want to "take" from another range. In the picture below it's on the same sheet, but you can select a column on any other sheet for this to work
E2 is the value in the original range that corresponds with something in the other range
AA is where you expect to find the corresponding value of E2. Again, A:A could be on a different sheet.
0 means you're looking for an exact match, replace this with 1 or -1 for an approximate match
Hope this helps.
Dexter