<!-- If you are reporting a new issue, make sure that we do not have any duplicates already open. You can ensure this by searching the issue list for this repository. If there is a duplicate, please close your issue and add a comment to the existing issue instead. Use the commands below to provide key information from your environment: You do NOT have to include this information if this is a FEATURE REQUEST --> **Can formulaFuncs support AND and OR methods?** I need : 1. calculate `AND` , `OR` and `Date` 2. When I input the wrong formula, it should have returned an error but a panic <!-- Briefly describe the problem you are having in a few paragraphs. --> **Input** ``` 1. AND(1=1,2=2) 2. OR(1=2,2=2) 3. Date(2020,10,01) 4. AND(1=1), ``` **Output** ``` 1. true 2. true 3. 2020/10/01 4. error ```