Overview
Excel functions allow you to generate answers to questions in bulk using Passionfruit’s AI capabilities. You can process individual questions or combine multiple cells to create comprehensive queries.Individual Questions
To answer a single question, use thePASSIONFRUIT.ASK
function with a cell reference:
Combining Multiple Cells
To combine questions from multiple cells into a single query, use the
CONCAT
function:
Advanced Techniques
Pinning Cell References
When you want to keep one cell reference fixed while allowing others to change when copying formulas, use the$
symbol:
$C$1
- Both row and column are pinned (absolute reference)C4
- Both row and column will change when copied (relative reference)
Mixed References
You can also use mixed references for more flexible formulas:$C1
- Column C is pinned, row 1 will change when copiedC$4
- Row 4 is pinned, column C will change when copied
Reviewing Answers
Side Panel Monitoring
As answers are generated, they appear in the Passionfruit side panel:- Real-time Updates - Watch as answers arrive in the side panel
- Click to Review - Click on any answer to review the generated content
Answer Quality
Each generated answer includes:- Confidence Level - Shows how certain the AI is about the answer
- Source References - Links to relevant documents or sources
- Context - Additional information that supports the answer
Best Practices
Formula Structure
- Always use
CONCAT
to combine multiple cells - Add spaces between combined content for better readability
- Use absolute references (
$
) for template cells that shouldn’t change
Error Handling
If a formula doesn’t work as expected:- Check that all referenced cells contain valid content
- Ensure the
CONCAT
function is properly formatted - Verify that Passionfruit is connected and accessible
Examples
Simple Question Answering
Question | Formula | Result |
---|---|---|
”What is quality policy?” | =PASSIONFRUIT.ASK(A1) | Generated answer appears |
Combined Questions
Questions | Formula | Result |
---|---|---|
A1: “Quality policy?” A2: “Food safety?” | =PASSIONFRUIT.ASK(CONCAT(A1, " and ", A2)) | Combined answer for both topics |
Template with Fixed References
Template | Formula | Result |
---|---|---|
1: “Describe your” B2: “quality system” | =PASSIONFRUIT.ASK(CONCAT($A$1, " ", B2)) | ”Describe your quality system” |
Troubleshooting
Formula not working:- Check cell references are correct
- Ensure Passionfruit is connected
- Verify question content is not empty
- Check the side panel for generated answers
- Click on answers to review and copy them