ok its not as easy as it sounds, but what im trying to calculate is depending on a position of a song each week. Eg song : Kesha's Tik-Tok is currently at no. 8 and the next week its at 3. I want to calculate that for that song. but you see it will be in a different cell each
Please can you help me with a formula if its possible?
*it's not just 1 song i want to calculate its 40 different tracks each week. Here's a piece of the full chart
Current Position. Last week
1 (find diff btwn this no and that one) 4 Iyaz Replay
2 9 Pitbull ft Akon Shut it down
3 6 One Republic All the right moves
--------------
Last edited by jippee; 03-21-2010 at 01:08 PM.
Can you upload example?
"Relax. What is mind? No matter. What is matter? Never mind!"
assuming this week iw in col a a2 downwards and last week is col b b2 down
then something along the lines of
=IF(B2-A2>0,"up "&B2-A2,IF(B2-A2<0,"down "&ABS(B2-A2),IF(B2=A2,"no change")))
"Unless otherwise stated all my comments are directed at OP"
Mojito connoisseur and a dabbler in Cisco
where does code go ?
look here
how to insert code
how to enter array formula
why use -- in sumproduct
recommended reading
wiki Mojito
how to say no convincingly
most important thing you need
Martin Wilson: SPV
and RSMBC
or this
=CHOOSE(SIGN(A1-B1)+2;"up";"same";"down")
"Relax. What is mind? No matter. What is matter? Never mind!"
clever that, i've never really used sign and completely forgot it, nice one.
"Unless otherwise stated all my comments are directed at OP"
Mojito connoisseur and a dabbler in Cisco
where does code go ?
look here
how to insert code
how to enter array formula
why use -- in sumproduct
recommended reading
wiki Mojito
how to say no convincingly
most important thing you need
Martin Wilson: SPV
and RSMBC
hey thanks for the info, listen each chart will either be on a separate sheet or on a new workbook, depending if its a new month.
Yeah but where do i upload it?Can you upload example?
CHART 1/week 1
Current Position. Last week
*cell A1, sheet 1* 1 4 Iyaz - Replay
CHART 2/week 2
Current Position. Last week
*cell A7, Sheet 2* 7 1 Iyaz - Replay
i want to calculate the difference between week 1 position and week 2 position.
****those are estimates cell positions, each week the song position is going to be different, so i want a formula that can pick out the song name and use its own values, so the next week (week 3) might be in cell A13.
thanks![]()
Last edited by jippee; 03-22-2010 at 05:45 AM.
You can click New post and then click stample icon.
Did you try to implement solutions above?
(maybe you need to change ; to , in my example)
=CHOOSE(SIGN(A1-B1)+2,"up","same","down")
"Relax. What is mind? No matter. What is matter? Never mind!"
i have shown my example in my previous post^
thanks
=IF(B2-A2>0,"up "&B2-A2,IF(B2-A2<0,"down "&ABS(B2-A2),IF(B2=A2,"no change")))thanks, like these ones to show the change, but will also like to show the amount in change, like moved up '+13' places or down '-5' places.=CHOOSE(SIGN(A1-B1)+2;"up";"same";"down")
thank u!
Last edited by jippee; 03-22-2010 at 05:58 AM.
It's showed example and we would rather see uploaded example![]()
"Relax. What is mind? No matter. What is matter? Never mind!"
=IF(B2-A2>0,"up "&B2-A2,IF(B2-A2<0,"down "&ABS(B2-A2),IF(B2=A2,"no change")))
does that it gives back "up 13" or "down 4" or "no change"
if you want the +/- sign in there then
=IF(B2-A2>0,"up +"&B2-A2,IF(B2-A2<0,"down "&B2-A2,IF(B2=A2,"no change <>")))
"Unless otherwise stated all my comments are directed at OP"
Mojito connoisseur and a dabbler in Cisco
where does code go ?
look here
how to insert code
how to enter array formula
why use -- in sumproduct
recommended reading
wiki Mojito
how to say no convincingly
most important thing you need
Martin Wilson: SPV
and RSMBC
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks