• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

combining of formula

vikash

New Member
in one column i have values which i want to classify depending which value they lie between i am able to do it separately but in a single column. file attached
 

Attachments

Hi ,

I am not clear on what you want to do , but concatenating the two results is done by concatenating the two formulae , as in :

=IF(AND(C5>=1,C5<5),"a","b") & IF(AND(C5>=5,C5<10),"c","d")

Enter this is any one cell , say F5 , and copy down.

If you can explain exactly what you want to do , a better formula can be developed.

Narayan
 
Hi ,

I am not clear on what you want to do , but concatenating the two results is done by concatenating the two formulae , as in :

") & =IF(AND(C5>=1,C5<5),"a","bIF(AND(C5>=5,C5<10),"c","d")

Enter this is any one cell , say F5 , and copy down.

If you can explain exactly what you want to do , a better formula can be developed.

Narayan

I have to classify the value given. All the values between 1 to 5 should be coded as "a" and between 5 to 10 should be "c". However i am not able to put the formula at one go and i am doing it in two different column. i want it in one column.
for example
7-c
10-c
2-a
5-a
 
I have tried using vlookup approximate match function + text function to get your desired result. You can tweak your assumptions in order to get required answer.

Hope this solves your problem

Rohit
 

Attachments

Back
Top