![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
New Member
Join Date: Feb 2002
Posts: 5
|
I'm trying to build a formula that would reassign list pricing for a product into 3 promotional rates. Can someone help me turn this into something excel can understand?
If cell c3 <$600 then d3 = $200 If $601 Thanks, Brian |
|
|
|
|
|
#2 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,314
|
Quote:
If $601 In D3 enter: =(C3<=600)*200+(c3>600)*(C3<=1000)*350+(C3>1000)*500) This one is without IFs. |
|
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Feb 2002
Location: Florida
Posts: 82
|
This works great if you remove the last )after 500
|
|
|
|
|
|
#4 | |
|
MrExcel MVP
Join Date: Feb 2002
Location: The Hague
Posts: 50,314
|
Quote:
|
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|