Forum Discussion
Add 5 if a cell contains text "yes"
- Apr 29, 2020
Base on some unofficial confirmation from Microsoft and reading AppIe development docs, I believe the Autonomous Single App Mode needs App developer to support it. Once in the ASAM mode within the app, the app needs to have a mechanism to quit or sign out. I have made the Zoom Room app working in the ASAM mode. It has a sign out button to quit the app thus exit the ASAM mode and return to full access to iPad. If the app doesn't have the ability to quit itself, it's just like the Kiosk mode and won't work in the ASAM mode.
Hi,
Yes, this is possible!
Try this formula:
=IF(SUM(IFERROR(SEARCH("yes",B1:B10),0))>0,SUM(B1:B10)+5,SUM(B1:B10))
NOTE: To enter this formula press Ctrl+Shift+Enter, this keystroke will force the formula to return the right result.
- Haytham AmairahNov 30, 2017Silver Contributor
You can also refer it to a cell as follows:
- Titchard FamilyNov 30, 2017Copper ContributorThanks I understand that part but for example. If I requested a Yes and No answer and someone enters Yea. I would like to add up all answers that were not No.
- Haytham AmairahNov 30, 2017Silver Contributor
In the formula edit mode, replace this operator > with this =
Before
=IF(SUM(IFERROR(SEARCH(E8,B1:B10),0))>0,SUM(B1:B10)+5,SUM(B1:B10))
After
=IF(SUM(IFERROR(SEARCH(E8,B1:B10),0))=0,SUM(B1:B10)+5,SUM(B1:B10))