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).
I tried to find the way from other questions but I am keep getting error message and can't find the right one... So it would be much appreciated if you can help me.
I have a text file and you can download it from link here:
https://1drv.ms/t/s!Ag44bY-ZJIWUm2N3wxMdOTZctz90
It would be great if you can tell me how to do following steps:
Read the data in Excel
Change the date format to yyyy-mm-dd h:mm (i.e. 2016-03-14 17:24:55)
Amount column means amount of rain. I'd like to know total rain of morning (00:00 - 12:00) and total rain of afternoon (12:00 - 24:00) per each day. The sample that I want can be downloaded here : https://1drv.ms/x/s!Ag44bY-ZJIWUm2Zz-GW9sBtu4ZA7
Many thanks,
Steve
Ok I am expecting you will be able to import the text data into Excel, if not let me know I will let you know how to do it.
After importing the file in excel in Column F use the formula =CONCATENATE(MID(B2,5,2),"/",MID(B2,7,2),"/",LEFT(B2,4))
in Column G use the formula
=IF(MID(B2,10,2)+0>13,"Amount of Rain in the afternoon","Amount of Rain in the morning")
Then simply create a Pivot table Put Column F in Rows, Column G in Columns and Column C (Amount) in Sum of Values to get your desired Data
Excel I worked on is https://www.dropbox.com/s/psiovaetou7jpe5/Rain.xlsx?dl=0
Sumil
I have been struggling to find a solution to this. I have a CSV file with an unusual pricing format and I need to update an eCommerce database with it.
The prices in CSV looks like this:
258662
349387
304
50
So, last two digits is the 2nd decimal.
I need to mass process these prices like this:
258662 to 2586,62
86923 to 869,23
304 to 3,04
50 to 0,50
I hope I could explain my need properly.
simply divide by 100; assuming that all the prices are stored in column A of your Excel sheet and you want to have the new prices in column B, the formula would be, e.g. for cell B1: =A1/100
So guys the FIFA world cup is on.. me and a group of my friends have voted on teams who think might win on an excel spreadsheet. I want to find a way where we can tally the vote and on the last cell it'll tell us how many people voted for a particular team on each match.
For example on the side of each rows it'll say the most voted and the percentage of the vote. In our example it's Brazil and 80% of my friends think they will win and so on..
I know there is a excel formula for MATCH but the compares columns is there way to use this for ROW comparison along with the percentage
This formula should work to give you the team with the highest votes that you can drag down your list.
=IF(COUNTIF($B2:$G2,MID(A2,1,FIND(" ",A2,1)-1))>=COUNTIF($B2:$G2,MID(A2,FIND("Vs ",A2,1)+3,999)),MID(A2,1,FIND(" ",A2,1)-1)&" - "&TEXT((COUNTIF($B2:$G2,MID(A2,1,FIND(" ",A2,1)-1))/COUNTIF($B2:$G2,"<>"&"")),"0.00%"),MID(A2,FIND("Vs ",A2,1)+3,999)&" - "&TEXT((COUNTIF($B2:$G2,MID(A2,FIND("Vs ",A2,1)+3,999))/COUNTIF($B2:$G2,"<>"&"")),"0.00%"))
Using a MID function with a FIND function you can find that name of each team. To find the first team you can use
=MID(A2,1,FIND(" ",A2,1)-1)
To find the second team you can use
=MID(A2,FIND("Vs ",A2,1)+3,999)
You can then use this formulas as your criteria for your COUNTIF
So instead of having
=COUNTIF($B2:$G2,"Brazil")
where you have to type every team in manually you can insert the MID
=COUNTIF($B2:$G2,MID(A2,1,FIND(" ",A2,1)-1))
And repeat for the second team using the other MID formula
This will give you the COUNTIF for the two team Vs each other.
Wrap this into an IF statement where if count of team1 is greater than count of team2, show team1 and team1 votes / total votes as percentage with a TEXT.
'Where if
=IF(COUNTIF($B2:$G2,MID(A2,1,FIND(" ",A2,1)-1))>=COUNTIF($B2:$G2,MID(A2,FIND("Vs ",A2,1)+3,999))`
'Then
MID(A2,1,FIND(" ",A2,1)-1)&" - "&TEXT((COUNTIF($B2:$G2,MID(A2,1,FIND(" ",A2,1)-1))/COUNTIF($B2:$G2,"<>"&"")),"0.00%")`
'Else
MID(A2,FIND("Vs ",A2,1)+3,999)&" - "&TEXT((COUNTIF($B2:$G2,MID(A2,FIND("Vs ",A2,1)+3,999))/COUNTIF($B2:$G2,"<>"&"")),"0.00%")`
I have a string of stock price data data and I want to be able to count how many days the price moves up or down lasted. So for example, from the data I have a used "if" functions to determine if a day was up or down: "U" for and Up day and "D" for a Down day. Lets say the string then looks like this:
UUUDDUDUDUDUUU
I want a formula to count that there were 3 Up days, and 2 Down Days, 1 Up, 1 Down etc etc... and then I will be able to built a profile of how long the prices moves in one direction lasted....i want to then display the results in histograms or charts.
Does anyone know what formula or function I can use to get the results I want?
Appreciate any help. thanks
Ok, I created something on Google Spreadsheet that tracks the S&P 500 for this month. You can enter any other stock prices you want.
You probably want something like the spreadsheet.
Look at the formulas for the columns: UP/DOWN, UP Trend, Down Trend
View the spreadsheet HERE.
Download the Excel.