Best Of
Re: Does a workflow in a Data Shuttle have the ability to pull an updated report in a SharePoint Folder?
Data Shuttle looks for a file by name in OneDrive. What I would do is use Power Automate to stage the file for Smartsheet to pick up, and then either delete it or overwrite it with the new file the next week. As long as Data Shuttle runs once a week, and the file is there and has the same name each time, Data Shuttle will pick it up.
Re: Index formula help with a global update when referencing template metadata sheet
Hi @Jef Forward
Unfortunately, Global Updates in the Control Center doesn't currently support updating/modifying formulas with cross-sheet references. The INDEX formula needs manual adjustments for already provisioned projects.
There is a product feature request discussion on this.
To automate this, you can use the Smartsheet API to create cross-sheet references that dynamically adjust formulas based on the project context. This would require custom scripting. If you are unfamiliar with programming, Bridge is an alternative solution to help automate some of these processes without deep technical expertise.
Re: Maps & Hyperlinks
I know this is kind of sloppy but after days of searching, thanks to cbsarge I was able to take what he posted and figure out how to adapt it to my own sheet to make it work.
my sheet looks like this. I need to be able to map the address in the JOB ADDRESS column so my formulua for Map it column is
="https://www.google.com/maps/search/?api=1&query=" + SUBSTITUTE([Job Address]@row , " ", "+")
Re: July Question of the Month - Join the conversation and receive a badge
This year, my goal was to run four 5k races and train for a 1/2 marathon. Welp, a knee injury has canceled that goal. I've replaced it with developing my knowledge. :) I've started reading the 12th edition of USALI to understand hotel finance and working with a mentor towards PMP. Either way - I'm still building muscles 🤭
Darla Brown
Re: Fetching comments from a Smartsheet : Getting Error
I got it now Thank you so much help, Sheed ID was the part where I got confused, Now everthing is working fine
Thank you everyone who took their valuable time and responded back 🤗
RICEFW Template with Dashboard
Hello! I am looking to see if anyone has developed a RICEFW (Reports, Interfaces, Conversions, Enhancements, Forms an Workflows) Template with a support intake form and Dashboard?
Re: Bridge: Copy partial Row example - error
Try this for the Row ID in the Get Row module:
{{runtime.event.rowId}}
Notice the end is "Id" with a lowercase "d". It is case sensitive but understandably frustrating when the "sheetID" is a capital "D". I always suggest going into the run-log and copying the reference from there to help avoid this.
Paul Newcome
Re: Canva & Brandfolder Plugin Search Not Working
Hi Isaac and Brandfolder Community, our Canva account executive brought the issue to their 'ecosystems team,' who confirmed that assets could only be searched using the tag functionality not the search bar, the plugin doesn't search metadata. I'm waiting for them to confirm if a user can search for more than one tag at a time. Stay tuned. I would love to hear if other Brandfolder users have figured out a workaround.
Best,
Jennifer
Re: #INVALID DATA TYPE on an IF( function
Hmmm… Would this formula do it:
=IF(TermDate@row - HireDate@row < 730, HireDate@row + 1095, TermDate@row + 365)
All three columns are date columns.
Re: Using data shuttle for weekly backups from smartsheet to sharepoint
@nadimsobhani , a solution we use is to:
- Download the sheet on a schedule to a SharePoint location
- Run a python script using task scheduler to rename the file.
We use a server synced to SharePoint using OneDrive and to run a BAT file that triggers the python script. The code below will need some tweaking.
BAT file
This file is triggered by Windows task schedule
@echo off
python path\to\your\script.py
Python file
This file contains the python code to rename the file.
import os
from datetime import datetime
# Specify the file you want to rename
original_file = 'example.txt'
# Get today's date in the desired format
today_date = datetime.now().strftime('%b %d %Y')
# Create the new file name
new_file = f"{os.path.splitext(original_file)[0]}_{today_date}{os.path.splitext(original_file)[1]}"
# Rename the file
os.rename(original_file, new_file)
print(f"File renamed to: {new_file}")
Neil Egsgard
Business Solutions Architect
Southern Alberta Institute of Technology
Neil Egsgard

