Formula require

Ketan_ashiyani

New Member
Joined
Sep 12, 2024
Messages
15
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
Dear Team

We need to solution as per attached sheet and screen shot.

Note Type

Result Require :

1. State cell is Blank Result require is 0,
2. Type cell is C and State Cell is not blank. The result required is (-) negative value
3. Type cell is Blank and state cell is not blank result required is positive value

TypeStateAmount in INRResult Require
08-Rajasthan100
23-Madhya Pradesh200
C24-Gujarat300
600
27-Maharashtra1,000
08-Rajasthan2,000
3,000
C27-Maharashtra5,000
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Hello, like this?

Excel Formula:
=IFS(ISBLANK(B2),0,AND(A2="C",ISTEXT(B2)),-C2,AND(ISBLANK(A2),ISTEXT(B2)),C2)
 
Upvote 0
in D2 (adjust if your screenshot does not start from A1) formula:
VBA Code:
=IF(B2<>"",IF(A2="C",-C2,C2),0)
and copy down
 
Upvote 0
Solution
We do not need nesting IFs:

Excel Formula:
=IFS($B3="",0,AND($A3="C",$B3<>""),-$C3,AND($A3="",$B3<>""),C3)
 
Upvote 0

Forum statistics

Threads
1,225,748
Messages
6,186,795
Members
453,371
Latest member
HMX180

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