Forum Discussion
Oliullah_Siddique
Jun 26, 2022Brass Contributor
Excel Formula
Hello, I need the following formula. Thanks a lot. Result B2 C2 Formula Criteria Operating profit 1,000 1,000 If B2 & C2 are positive, formula wil...
- Jun 26, 2022
Assuming Excel 2019, 2021 or 365 you could do this with https://support.microsoft.com/en-us/office/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45
in A2
=IFS( AND(B2 > 0, C2 > 0), "Operation profit", AND(B2 < 0, C2 < 0), "Operation loss", AND(B2 > 0, C2 < 0), "Operation profit/(loss)", AND(B2 < 0, C2 > 0), "Operation (loss)/profit", TRUE, "Other" )
Lorenzo
Jun 26, 2022Silver Contributor
Assuming Excel 2019, 2021 or 365 you could do this with https://support.microsoft.com/en-us/office/ifs-function-36329a26-37b2-467c-972b-4a39bd951d45
in A2
=IFS(
AND(B2 > 0, C2 > 0), "Operation profit",
AND(B2 < 0, C2 < 0), "Operation loss",
AND(B2 > 0, C2 < 0), "Operation profit/(loss)",
AND(B2 < 0, C2 > 0), "Operation (loss)/profit",
TRUE, "Other"
)
- Oliullah_SiddiqueJun 26, 2022Brass ContributorThanks a lot Lorenzo
- LorenzoJun 26, 2022Silver ContributorGlad we could help. To help others who search this site could you click on the Mark as response link at the bottom of one of the options you got please ? Thanks
- Oliullah_SiddiqueJun 26, 2022Brass ContributorThat's done! Lorenzo