Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
MWH
 
Posts: n/a
Default Up Arrows / Down Arrows

If cell A2 A1 I would like to show an up arrow next to the value, and visa
versa...

--
Mark W. Hanford



  #2   Report Post  
Charles T. Garrett
 
Posts: n/a
Default


=IF(A1A2,"?","?")


? alt+25

? alt+24




"MWH" wrote in message
...
If cell A2 A1 I would like to show an up arrow next to the value, and
visa versa...

--
Mark W. Hanford




  #3   Report Post  
Charles T. Garrett
 
Posts: n/a
Default

Post did not show the arrows. They were replaced with question marks.
Replace the question marks with the following information. Use Alt+24 for
the up arrow, and Alt+25 for the down arrow. (Excel 2000)


"Charles T. Garrett" wrote in message
om...

=IF(A1A2,"?","?")


? alt+25

? alt+24




"MWH" wrote in message
...
If cell A2 A1 I would like to show an up arrow next to the value, and
visa versa...

--
Mark W. Hanford






  #4   Report Post  
Norman Jones
 
Posts: n/a
Default

Hi MWH,

Try the following two-pronged approach:

(1) In B2: =If(A2A1, "p","q") Format with Windings3 font.

(2) Set conditional formats for the three possible cases:


=A1A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White


---
Regards,
Norman



"MWH" wrote in message
...
If cell A2 A1 I would like to show an up arrow next to the value, and
visa versa...

--
Mark W. Hanford




  #5   Report Post  
MWH
 
Posts: n/a
Default

Thanks! Norman ....works great!


"Norman Jones" wrote in message
...
Hi MWH,

Try the following two-pronged approach:

(1) In B2: =If(A2A1, "p","q") Format with Windings3 font.

(2) Set conditional formats for the three possible cases:


=A1A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White


---
Regards,
Norman



"MWH" wrote in message
...
If cell A2 A1 I would like to show an up arrow next to the value, and
visa versa...

--
Mark W. Hanford








  #6   Report Post  
MWH
 
Posts: n/a
Default

One more question if A2 = A1, i don't want an arrow to show, right now I
always get a down arrow


"Norman Jones" wrote in message
...
Hi MWH,

Try the following two-pronged approach:

(1) In B2: =If(A2A1, "p","q") Format with Windings3 font.

(2) Set conditional formats for the three possible cases:


=A1A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White


---
Regards,
Norman



"MWH" wrote in message
...
If cell A2 A1 I would like to show an up arrow next to the value, and
visa versa...

--
Mark W. Hanford






  #7   Report Post  
Norman Jones
 
Posts: n/a
Default

Hi MWH,

Try Changing:

=If(A2A1, "p","q")

To

=IF(A1=A2,"",IF(A2A1, "p","q")

--

---
Regards,
Norman



"MWH" wrote in message
...
One more question if A2 = A1, i don't want an arrow to show, right now I
always get a down arrow


"Norman Jones" wrote in message
...
Hi MWH,

Try the following two-pronged approach:

(1) In B2: =If(A2A1, "p","q") Format with Windings3 font.

(2) Set conditional formats for the three possible cases:


=A1A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White


---
Regards,
Norman



"MWH" wrote in message
...
If cell A2 A1 I would like to show an up arrow next to the value, and
visa versa...

--
Mark W. Hanford








  #8   Report Post  
MWH
 
Posts: n/a
Default

Ok, Just one more question :) is there a way to concatenate this
formula?=SUM(daily_Totals!F6) and your formula
=IF(F8=E8,"",IF(F8E8,"p","q")
I'm getting the data from another worksheet, and I would like
the up-arrow or down-arrow to show next to the value. I am trying to develop
an indicator to track man-hours and show where are our overall gains or
losses are coming from. The original data is coming from access and exported
to excel. Thanks again!




"Norman Jones" wrote in message
...
Hi MWH,

Try Changing:

=If(A2A1, "p","q")

To

=IF(A1=A2,"",IF(A2A1, "p","q")

--

---
Regards,
Norman



"MWH" wrote in message
...
One more question if A2 = A1, i don't want an arrow to show, right now I
always get a down arrow


"Norman Jones" wrote in message
...
Hi MWH,

Try the following two-pronged approach:

(1) In B2: =If(A2A1, "p","q") Format with Windings3 font.

(2) Set conditional formats for the three possible cases:


=A1A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White


---
Regards,
Norman



"MWH" wrote in message
...
If cell A2 A1 I would like to show an up arrow next to the value, and
visa versa...

--
Mark W. Hanford










  #9   Report Post  
ernestgoh
 
Posts: n/a
Default





(2) Set conditional formats for the three possible cases:

=A1A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White



I know this off topic but I read with interest on conditional
formatting. How do you go abouts setting the condtion? I went to
Edit-Go To-Special.


--
ernestgoh
------------------------------------------------------------------------
ernestgoh's Profile: http://www.excelforum.com/member.php...o&userid=24870
View this thread: http://www.excelforum.com/showthread...hreadid=384042

  #10   Report Post  
Norman Jones
 
Posts: n/a
Default

Hi MWH,

Just to add, using both of the approaches indicated in my initial reply, the
arrows would appear red, green or invisible (white on white background)
acoccording to A1A2, A1<A2 or A1=A2.

If , therefore, you include the conditional format element, you do not need
to use the revised formula.

---
Regards,
Norman



"MWH" wrote in message
...
One more question if A2 = A1, i don't want an arrow to show, right now I
always get a down arrow


"Norman Jones" wrote in message
...
Hi MWH,

Try the following two-pronged approach:

(1) In B2: =If(A2A1, "p","q") Format with Windings3 font.

(2) Set conditional formats for the three possible cases:


=A1A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White


---
Regards,
Norman



"MWH" wrote in message
...
If cell A2 A1 I would like to show an up arrow next to the value, and
visa versa...

--
Mark W. Hanford










  #11   Report Post  
Kassie
 
Posts: n/a
Default

Hi Norman

MWH wants to dsiplay the arrow in the same cell as the result, hence the
question about concatenation. This would mean that his values are turned
into text of course. Using the ampersand "&" you can concatenate the two
results of the two formulae. the question is whether you still want to be
able to do calculations on this cell afterwards.

"Norman Jones" wrote:

Hi MWH,

Just to add, using both of the approaches indicated in my initial reply, the
arrows would appear red, green or invisible (white on white background)
acoccording to A1A2, A1<A2 or A1=A2.

If , therefore, you include the conditional format element, you do not need
to use the revised formula.

---
Regards,
Norman



"MWH" wrote in message
...
One more question if A2 = A1, i don't want an arrow to show, right now I
always get a down arrow


"Norman Jones" wrote in message
...
Hi MWH,

Try the following two-pronged approach:

(1) In B2: =If(A2A1, "p","q") Format with Windings3 font.

(2) Set conditional formats for the three possible cases:


=A1A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White


---
Regards,
Norman



"MWH" wrote in message
...
If cell A2 A1 I would like to show an up arrow next to the value, and
visa versa...

--
Mark W. Hanford









  #12   Report Post  
Norman Jones
 
Posts: n/a
Default

Hi Kassie,

MWH wants to dsiplay the arrow in the same cell as the result


Thank you for this clarification

In fact Mark made this clear in subsequent post in a separate thread (see
the "Thanks" thread.

In the other thread, mark said:

I don't want to use a separate cell for the arrow, as I'll
have many columns of data over a long period of time.


I therefore suggested that Mark consider changing the sheet logic to
transpose rows and columns.

---
Regards,
Norman



"Kassie" wrote in message
...
Hi Norman

MWH wants to dsiplay the arrow in the same cell as the result, hence the
question about concatenation. This would mean that his values are turned
into text of course. Using the ampersand "&" you can concatenate the two
results of the two formulae. the question is whether you still want to be
able to do calculations on this cell afterwards.

"Norman Jones" wrote:

Hi MWH,

Just to add, using both of the approaches indicated in my initial reply,
the
arrows would appear red, green or invisible (white on white background)
acoccording to A1A2, A1<A2 or A1=A2.

If , therefore, you include the conditional format element, you do not
need
to use the revised formula.

---
Regards,
Norman



"MWH" wrote in message
...
One more question if A2 = A1, i don't want an arrow to show, right now
I
always get a down arrow


"Norman Jones" wrote in message
...
Hi MWH,

Try the following two-pronged approach:

(1) In B2: =If(A2A1, "p","q") Format with Windings3 font.

(2) Set conditional formats for the three possible cases:


=A1A2 | Font: Bold Red
=A1<A2 | Font: Bold Green
=A1 =A2 | Font: Normal White


---
Regards,
Norman



"MWH" wrote in message
...
If cell A2 A1 I would like to show an up arrow next to the value,
and
visa versa...

--
Mark W. Hanford











Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I change the colour of the 'filter arrows' sandro Excel Worksheet Functions 5 May 23rd 09 09:44 AM
Change the color of Filter Arrows in Excel to BRIGHT RED AlwaysThinking Excel Discussion (Misc queries) 6 April 21st 08 10:22 PM
Arrows move worksheet rather than cell selection, how fix? grenada49 Excel Worksheet Functions 3 May 17th 05 09:05 PM
Disappearing Arrows in Excel kathryn Excel Discussion (Misc queries) 1 May 13th 05 10:26 PM
Excel List range, filter arrows disappeared andrew Excel Discussion (Misc queries) 3 April 1st 05 11:30 PM


All times are GMT +1. The time now is 08:13 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"