Formulas to check Duplicates and if specific cell value is FHA Loan

TheOmicron

New Member
Joined
Jul 15, 2019
Messages
3
[FONT=&quot]I'm having a few troubles trying to solve a task in Excel.[/FONT]
[FONT=&quot]
[/FONT]

[FONT=&quot]Task 1 - https://gyazo.com/a84dc9eeae2f3d1d10df66a2b756a077[/FONT]
[FONT=&quot]Task 2 - https://gyazo.com/3b5a3e89d22046ad1b1c8cecd161d64a[/FONT]
[FONT=&quot]
[/FONT]

[FONT=&quot]Let me know if you would rather me upload the excel file, but i'd be very grateful if anyone can help me with the formulas. These are the only 2 tasks from a list of 20 and I've been struggling quite a bit to solve them.[/FONT]
[FONT=&quot]Thank you![/FONT]
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
it looks like it's coursework or some sort and very simple.
the only way to learn is to the research and learn by trying yourself
 
Upvote 0
[FONT=&quot]It's not homework. My father and I started some personal development program and it had multiple tasks to solve. We're doing it together in order to develop multiple skills and learn new things. We tried with MATCH and IF, but on the first task the issue is that we couldn't find ONE formula to detect all duplicates, and for the 2nd task we used <code class="s1wjcqzz-7 kYgbJw" style="margin: 0px 2px; padding: 0px; border: 0px; font-style: inherit; font-variant: inherit; font-stretch: inherit; font-size: 13px; line-height: 20px; font-family: "Noto Mono", Menlo, Monaco, Consolas, monospace; vertical-align: baseline; background: rgba(238, 238, 238, 0.8); color: rgb(255, 0, 109); max-width: 100%; overflow: auto;">=IF(C2="FHA",C4*0.0175)</code> , however not sure how to do the IF C2 does not equal FHA, result is 0.[/FONT]
[FONT=&quot]
[/FONT]

[FONT=&quot]Would still appreciate any help :)[/FONT]
 
Upvote 0
ok

for the first question you can use a countif() to search within a range, if the result is 2 or greater you got duplicates.

for the second question, e.g. E3 can be =if(C2="FHA", C4*1.0175, 0)
similar for the others
 
Upvote 0
Hey!

Thank you. Still didn't understand completely how to use countif for the first task. I guess it should start like: =COUNTIF(B2:B17), however didn't really get how in the next column should be copied the duplicate values. Maybe I missed something?

And for the second,:
Question 1
Code:
=IF(C2="FHA", C4*0.0175, 0)

Question 2
Code:
=IF(C2="FHA", C4*1.0175, C4)

Question 3
Code:
=IF(C2="FHA", C3*0.78, 0)

Hope this is correct. Appreciate your help, really. Also understood the logic o =IF so that's awesome!
 
Upvote 0
will this example help? copy C1 down


Book1
ABC
1appleapple
2OrangeN/A
3pearpear
4pear
5
6apple
7
8
9
10pear
Sheet1
Cell Formulas
RangeFormula
C1=IF(COUNTIF($A$1:$A$10,A1)>1,A1,"N/A")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,950
Messages
6,122,428
Members
449,083
Latest member
Ava19

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