Excel Formula

anand6802

New Member
Joined
Oct 13, 2015
Messages
12
hi all

i have one question related to excel formula

example

in A1 cell "Equity" and A2 cell "Bond same in B1 "15%" and B2 "3%"

Equity15%
Bond3%

<tbody>
</tbody><colgroup><col><col></colgroup>
i just want the formula that if euity is below 10% or bond below 5% then it should be fine other wise not fine in cloum C


<tbody>
</tbody><colgroup><col><col></colgroup>
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
Hi FormR

SecuityTollaranceaction required
Equity9%No
Bond6%Yes
Equity11%yes
Bond

i used if(or) foumula but its doesn't work when its chaged from equity to bond...

for Equity tolerance is less than 10% then its file no need to take any action....

and for bond the tolerance limit is less than 5% then its no need to take action...

4%
No


<tbody>
</tbody><colgroup><col><col><col></colgroup>
 
Upvote 0
Hi, something like this maybe?


Excel 2012
ABC
1SecuityTollaranceaction required
2Equity9%No
3Bond6%Yes
4Equity11%Yes
5Bond4%No
Sheet1
Cell Formulas
RangeFormula
C2=IF(OR(AND(A2="Equity",B2<10%),AND(A2="Bond",B2<5%)),"No","Yes")
 
Upvote 0
Hi FormR

Thanks a lot ......

Its working ....

I have one more question





A



B



C



D



E




1



Code



Which formula should we Use



Example need



which formula ?



Example need




2



450216785



(Need Secount last character or number only
)



8



if C2 = Number then "Equity" if its alphabet it should be
"Bond"



Equity




3



5502167B5






B






Bond




4



6702167C2






C






Bond




5



890216785






8






Equity




6



4502167G1






G






Bond

<tbody>
</tbody>

Thanks in advance...
 
Upvote 0
Something like this may work:


Excel 2012
ABC
24502167858Equity
35502167B5BBond
46702167C2CBond
58902167858Equity
64502167G1GBond
Sheet1
Cell Formulas
RangeFormula
B2=MID(A2,LEN(A2)-1,1)
C2=IF(ISNUMBER(B2+0),"Equity","Bond")
 
Upvote 0
Glad it helped, oh and welcome to MrExcel :)
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,691
Members
448,978
Latest member
rrauni

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top