Skip to main content
特色小组

* Quip *

Welcome! This group is dedicated to your success with Salesforce Quip. Join the conversation here to stay up to date on the product, learn best practices, and everything in between. Use this group to review resources, ask questions, help each other, and share experiences. --------------------------------------- This group is maintained and moderated by Salesforce employees. The content received in this group falls under the official Forward-Looking Statement: http://investor.salesforce.com/about-us/investor/forward-looking-statements/default.aspx

Is there a way to tell in the document, if the report is Live Data or Speadsheet?

 

#Quip

5 个回答
  1. 2025年6月11日 10:40

    Hi, 

     

    Is there a possibility to automate a Salesforce report in Quip to refresh automatically to a Google sheet, with all the active link in Quip intact and available in Google sheet?

    @* Quip *

     

     

    Thanks

0/9000

I need to display a picture from a website using its url into the quip cell. Is this possible?

@* Quip * 

1 个回答
  1. 2025年5月20日 14:12

    Yes, you can display a picture from a URL in a Quip document, but not directly in a cell of a Quip spreadsheet (i.e., inside a cell like A1 in Excel or Google Sheets). Here’s how it works and what your options are:

    Embed Image in a Quip Document

    If you're working in a Quip document (text area) and want to show an image from a URL:

    1. Copy the image URL (must be a direct image link ending in .jpg, .png, .gif, etc.).
    2. Paste the URL directly into the document.
    3. Quip will automatically recognize and embed the image inline.
0/9000

I am creating a calculator where I want to take the calculated values from two cells and divide them. E.g., cell A2 and A3 are both cells with basic formulas referencing another cell. I need to divide the two values in these cells. When I use the Divide formula, a value of zero is returned. Does quip have a limitation with using a formula referencing a cell with a formula that references another cell?

@* Quip * 

1 个回答
0/9000

I recently updated my device to iOS18 and since then, my iOS Quip app has stopped showing the editing toolbar that normally appears above the keyboard.

Is this a known regression? How could I report this to the developers? As you might imagine, the app is not very functional when I cannot access necessary utilities like indenting, H1/H2, @ mentions, etc.

 

Details:

- Quip app version: iOS v8.65.0, fully updated

- Device: iPhone 12 Pro

- Device operating system: iOS 18.2, fully updated

Customer impact:

When editing a document in the app, I am missing the toolbar that lets me control important formatting options such as: indent, set style (e.g. H1 or H2 headings), @ mention, etc.

Repo steps:

1. Create a quip document

2. Navigate to that document in Quip's iOS app (I don't have another iPhone so cannot isolate if the device and/or OS is unique to the problem)

3. Tap to place cursor anywhere

4. Keyboard opens to begin typing 

Expected: a menu formerly appeared above native keyboard, showing options to indent, change heading type, etc (see screenshot)

Actual: the menu is missing above the keyboard (see screenshot)

5. Dismiss keyboard and repeat steps 2-4 if it does not reproduce initially. The issue reproduces in both landscape & portrait mode.

Note: I have observed the menu appears exactly once (the very first time the keyboard opens), but then goes missing/absent for all subsequent editing, until the app is force quit again.

4 个回答
  1. 2025年1月30日 18:27

    Hello @Lucy C. Salesforce Support created a new known issue for this. Here is the link if you want to report it as affecting you. 

0/9000

Just got logged out of Quip. Previously was using Authy for 2 factor authentication and somehow the Authy profile for Quip got deleted. Trying to log into Quip requires authentication code which I cannot get because it was deleted from Authy. No way to get a new Quip QR code to setup 2 factor authentication as new.

#Quip

2 个回答
  1. 2025年1月29日 13:37

    what if I do not know who is the admin, as this is a global partner site...any idea how to find it? thank you

0/9000

Hi all, 

 

Is there a way to prevent the Daily Digest emails from being sent out to users? I know users can turn the notification off in Quip it's self but is there a way to turn it off for all users in an org? 

 

Thanks in advance

1 个回答
0/9000

Hi, 

 

I am looking to report on Account plans (Quip documents linked to Accounts) where i would like to report on the below 

a) Quip document creation date 

b) Quip document created by 

c) Number of Quip documents attached to an Account 

 

I had a look at the Quip engagement metric guide

https://help.salesforce.com/s/articleView?id=xcloud.quip_template_metrics.htm&type=5

however it provides metrics on Quip document usage and not the above. Can someone advise if this is possible? 

 

Thanks 

Abu

1 个回答
  1. 2025年1月24日 07:06

    Hi @Abubakar Badgail

    Hope you are doing well, 

     

    Currently, Salesforce does not provide direct reporting for Quip documents linked to Accounts with the specific details you are asking for (creation date, created by, and number of Quip documents attached to an Account). The Quip engagement metrics focus on usage data, not the details of document associations. 

     

    To achieve this:

     

    1. Custom Solution: You could create a custom object or fields on the Account object to track Quip document details manually or via automation (e.g., using Apex or Flow).
    2. API Integration: Use Quip's API to fetch the required data (e.g., creation date, creator, and count) and store it in Salesforce for reporting.
    3. Third-Party Tools: Explore third-party tools or integrations that might bridge this gap.

     

    Without customization or integration, native reporting on this specific data isn't possible. 

     

    I hope you find this answer helpful. 

     

    Regards  

    Sunny Patwa

0/9000

Hi,

 

I'm looking for support for one of Salesforce Labs API named "Salesforce Tasks Quip Live App". It allows Salesforce tasks to be modified in Quip. However, we noticed that clicking any modifiable date fields will show blank elements until you decide to reload the frame. Anyone familiar with this issue or encountering the same issue?

Salesforce Labs - Salesforce Tasks Quip Live App - Issue modifying date fields in QuipQuip_Task_Date_error_img2.png

Best regards,

John Michael Modina

 

#Quip

 

@* Quip *

1 个回答
0/9000

I'm using the python automation to integrate an external data source (survey results) into quip.   I'm able to call the api and add rows, get the table-id, etc.  but I'm unable to add a spreadsheet column programatically.   I'd like to add a new column with a survey question as the heading if the survey question does not exist in the table yet.

 

I've tried AFTER_SECTION after the last heading id, but get an error.  I've also tried to update the entire document with REPLACE_SECTION and the table id,  but get an error to the effect of "body too large".   

 

Here is my latest try:

document = quip.get_thread(quip_spreadsheet_id)soup = BeautifulSoup(document['html'], 'html.parser')table = soup.find('table')if table is None:    print("No table found")    return# Find all heading rowsrows = table.find_all('tr')if not rows:    print("No rows found in the table")    return# Get the first rowfirst_row = rows[0]# Find all cells in the first row (headings)cells = first_row.find_all(['th', 'td'])if not cells:    print("No cells found in the first row")    return# header rows are now in cellsheaders = []headerIds = []for i, cell in enumerate(cells):    if i == 0: continue    content = cell.get_text(strip=True)    headers.append(content)    headerIds.append(cell.get('id'))last_id = headerIds[-1]header = "newHeader"print(f'adding header: {header}')response = quip.edit_document(    thread_id=quip_spreadsheet_id,    format="markdown",    content=header,    section_id=last_id,    operation=quip.AFTER_SECTION)print(response)

 

Is there some incantation of /edit-document that can be used to add a spreadsheet column? 

 

#Quip

 

@* Quip *

2 个回答
  1. 2024年12月30日 16:20

    Thanks @Ashwini Garwandha

     

    I've seen many of the documents above and have been able to use the API,  just not to add a column.  That particular API command appears to be missing or is not obvious to me in the above docs. 

     

    I am able to make minor edits to the documents via the automation API.  I've been able to get authentication and basic usage patterns working, such as changing cell values.      I have not been able to add a column.  If I try to upload the entire spreadsheet via replace,  it is too large for the API and I get an error.   

     

      I know that it is possible to just add a column, because the web interface can do it. The web interface however does not use the automation API that is publicly documented (as far as I can see).  It appears to use a google protocol buffers based protocol via HTTP POST.   I have not gone through the effort to try to RE that protocol, and even if I do,  there is a very good possibility that the automation API won't handle it. 

     

    AI's such as out internal AI, AgentForce and  others are not able to provide a working answer.  

     

    Do you have any simple formulaic example of an invocation that will add a column with a name "NewColumn"?   This would be very helpful. 

0/9000