Suppose this is my Excel Online:
Name Price Date Debt Pay
A $ 2022/0/12/25 5
A $ 2022/0/12/27 6
I want to use this in another cell to check this:
if d:d is bold and name=A and Price=$ or "Dollar", then sum(d:d) - minus(e:e)
I want to create an Excel to write how much I should pay to others and how much they should pay me (for myself use only).
I searched some sites but none of them worked and I got formula error.
I mention that I use Excel Online (I think some formulas are different between Online and Installed version).
Related
I have a monthly report on google sheets(excel format) that I am trying to to fix. So I have 17 workers. The formula that Iam trying to make is, it should count how many days workers worked in a month. Workers day-offs are not obvious(we decided everyday) it shows in the graph, name, job location or day-off Screenshot
it is in P column and i tried to write this formula:
=If(And("P2,P21,P43,P65,P86,P103,P123,P144,P165,P186,P207,P228,P249,P270,P291,P312,P333,P354,P375,P396,P417,P438,P459,P481,P502,P523,P545,P566,P588,P609,P630","x=1","x=off=0"))
I know this is not correct, does anyone know how to put it together? this formula is only for one worker, for others I will copy paste
The function you're looking for is networkedays
https://support.google.com/docs/answer/3092979?hl=en
Please note that if you're using Google spreadsheets you should tag your question appropriately (there are some similarities but it's not identical)
I am running an Advanced Filter on an excel data set from FRED. I've been trying to filter the data to include only January, April, July and October data (first month of each quarter). If I run an advanced filter with the criteria as a specific date (ex. 1/1/1995), the result returns as expected. However, as soon as I use any special search characters, (ex. 1/, 1//*, 1995 or 1/1/????) I get no results. I've read the excel documentation, and searched the internet for solutions but no one seems to be having this issue.
Ideally what I want to do is search for all of those months while excluding everything else (something like 1* OR 2* OR 3* or 4*) the first thing I need to figure out is why I can't seem to make filtering work period.
I'm guessing that the issue has something to do with how excel treats dates. Originally the dates were in the format DD-MM-YYYY but I realized that Excel was processing them as if they were in M-D-YYYY format so I changed the data to reflect that. I tried transforming the dates into regular text to get around that but Excel converted them to numbers that looked like "4/1/1995."
Keep in mind I am new to filtering so I'm probably making a rookie mistake.
Sample of Data and Criteria (Filter not applied)
observation_date FEDFUNDS
1*
observation_date FEDFUNDS
1/1/1995 5.53
2/1/1995 5.92
3/1/1995 5.98
4/1/1995 6.05
5/1/1995 6.01
6/1/1995 6.00
7/1/1995 5.85
8/1/1995 5.74
Wildcards only work on strings. Dates are not strings, but are numbers. So you need to use greater than and less than to set bounds in which to return numbers, as I have done below for the month of February. (Note that my dates are in non-US format)
Here is a picture showing a working example with the filtering criteria followed by the filtered data and the advanced filter window with the ranges used in my case. From A2 to A5 is the dates I want the advanced filter to work on.
Filtering by part of a date (the way you see it in the cell) would not be possible with FILTER as far as I know.
Your feedback/ comment is appreciated!
Alright so I use excel a lot because of its cross platform functionality and I'm fed up of some of the very long workflows I have to complete for a load of weekly reports I have to do.
I've been experimenting with this for about 2 weeks and I'm not happy with any of it.
I need to input several different reports into a spreadsheet. Except all of the reports the data is in a different order and there is no way to make them all the same format. So what I was hoping to do was to give each product line (theres 170-300 product lines on each report) a numerical value and then have the spreadsheet call the cells from the different pages using its numerical index. Similar to the most basic of tables in C/C++ (the only coding knowledge I have). I have experimented with Vlookup and Address but both cant be used together and address only returns the address of the cell (but there is no way to then get this to read the data out of the cell and then other pieces of information relating to that cell.
If anyone has any ways of helping me out with this then I would be massively appreciative. P.s. To keep this simple all the reports are manually inputted so they all have the same formatting just on different sheets.
You can use INDEX MATCH to match rows and columns,
First Sec Thi
A Apple Orange Banana
B Grape Peach Harambe
C Lime Steve Goat
=INDEX(A:D, MATCH("B",A:A, 0), MATCH("Thi",1:1, 0))
Will return 'Harambe'.
I've been working on this most of the day and I'm stumped on this one part.
Here's some background: I've been asked to an injury log (which is created in Excel) and create a report around it (which I've been told has to be in Excel). Right now, I'm trying to count the number of injuries, that meet certain conditions, within the last three months.
This is what I got working so far:
=COUNTIFS('All Injuries'!C:C,"*S/R*",'All Injuries'!K:K,"*Yes*",'All Injuries'!M:M,">="&TODAY()-180,'All Injuries'!M:M,"<="&TODAY())
The issue that I'm running into is I can't depend on the TODAY function. There's a cell - A2 - that will have a date in it (12/15/2015, 11/15/2015, 10/15/2015, etc.)
What I want is to count the number of injuries that fall within that range (A2 to A2 minues 180 days). However, when I replace &TODAY, with A2, the formula just errors out.
So, that's where I'm stuck.
replace
&TODAY
with
&A2
I have been researching this and I have found several different iterations of the formula, but I just can't get mine to work. I am trying to create an if/and formula in a calculated field. I am trying to show data based on three criteria.
If the create date is greater than month 2 and less than month 8 then OCTOBER 1
If the account change type is Immediate: Error or Business Case then MONTH([CreateDate])+1 and 1.
Otherwise MARCH 1
This is the formula I have:
=IF(AND([Created]>2,[Created]<8),"OCTOBER 1",IF([Account Change Type]="Immediate: Error or Business Case"),"ASAP","MARCH 1"))
These are the forums I have looked at and still can't get it:
Stack Overflow
Social TechNet
StackExchange
The simple answer that pops to mind is that you have an extra parentheses at the end of that formula. If you want to test these formula syntax wise, just put them in Excel.
If you're having another issue beyond that, can you provide an error or specific symptom of some sort?