SlideShare ist ein Scribd-Unternehmen logo
1 von 36
Downloaden Sie, um offline zu lesen
App Building Best Practices
Formulas and Form Rule Use Cases
Kirk Trachy, QuickBase - Sales Engineer
Craig McElroy, J. Lodge - Database Director
#EMPOWER2015
① Explore 17 Formulas
② Use 6 Form Rules
③ Test them
④ See how they work
⑤ Discuss best practices
Agenda
How to use Formulas and Form Rules to solve day-to-day workflow challenges
#EMPOWER2015
#EMPOWER2015
#EMPOWER2015
① Automate complex processes
② Provide custom user experiences
③ Ease new user adoption
④ Save training time
⑤ Simplify use
Benefits of Buttons and Form Rules
#EMPOWER2015
1) Change status
2) Change status then dashboard
3) Check a checkbox
4) Check / Uncheck checkbox dr
5) Check / Uncheck checkbox er
Ten Buttons (Get “Magic Buttons” From Exchange)
6) Show/Hide Project Section
7) Change to a different form
8) Assign to self
9) Create a project snapshot
10) Edit record and return
#EMPOWER2015
1. Change status to completed then dr
URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" &
"&rid=" & [Record ID#]&
"&apptoken=d9eascudwjxs2sesxkjccwgtq9r"&
"&_fid_28=Completed" &
"&rdr=" &
URLEncode(URLRoot() & "db/" & Dbid() &
"?a=dr&rid=" & [Record ID#])
Press the button and change status to "Completed" and then redirects to dr.
#EMPOWER2015
2. Change status to completed then dashboard
URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" &
"&rid=" & [Record ID#]&
"&apptoken=d9eascudwjxs2sesxkjccwgtq9r"&
"&_fid_28=Completed" &
"&rdr=" &
URLEncode(URLRoot() & "db/" & Dbid())
Press the button and change the status to "Completed”. Then redirects to dashboard.
#EMPOWER2015
3. Check a checkbox then dr
URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" &
"&rid=" & [Record ID#]&
"&apptoken=d9eascudwjxs2sesxkjccwgtq9r"&
"&_fid_101=1" &
"&rdr=" &
URLEncode(URLRoot() & "db/" & Dbid() &
"?a=dr&rid=" & [Record ID#])
Press the button and this changes the "Checkbox" to checked.
#EMPOWER2015
4. Check / Uncheck a checkbox then dr
If([Checkbox]=false,URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" &
"&rid=" & [Record ID#]&
"&apptoken=d9eascudwjxs2sesxkjccwgtq9r"&
"&_fid_101=1" &
"&rdr=" &
URLEncode(URLRoot() & "db/" & Dbid() &
"?a=dr&rid=" & [Record ID#])
,
URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" &
"&rid=" & [Record ID#]&
"&apptoken=d9eascudwjxs2sesxkjccwgtq9r"&
"&_fid_101=0" &
"&rdr=" &
URLEncode(URLRoot() & "db/" & Dbid() &
"?a=dr&rid=" & [Record ID#]))
Press to check "Checkbox”.
Press again and uncheck
“Checkbox”.
Left in display mode dr.
#EMPOWER2015
5. Check / Uncheck a checkbox then er
If([Checkbox]=false,URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" &
"&rid=" & [Record ID#]&
"&apptoken=d9eascudwjxs2sesxkjccwgtq9r"&
"&_fid_101=1" &
"&rdr=" &
URLEncode(URLRoot() & "db/" & Dbid() &
"?a=er&rid=" & [Record ID#])
,
URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" &
"&rid=" & [Record ID#]&
"&apptoken=d9eascudwjxs2sesxkjccwgtq9r"&
"&_fid_101=0" &
"&rdr=" &
URLEncode(URLRoot() & "db/" & Dbid() &
"?a=er&rid=" & [Record ID#]))
Press to check "Checkbox”.
Press again and uncheck
“Checkbox”.
Left in display mode er.
#EMPOWER2015
6. Show/Hide Project Section then dr
If([Show Project Section]=false,URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" &
"&rid=" & [Record ID#]&
"&apptoken=d9eascudwjxs2sesxkjccwgtq9r"&
"&_fid_105=1" &
"&rdr=" &
URLEncode(URLRoot() & "db/" & Dbid() &
"?a=dr&rid=" & [Record ID#])
,
URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" &
"&rid=" & [Record ID#]&
"&apptoken=d9eascudwjxs2sesxkjccwgtq9r"&
"&_fid_105=0" &
"&rdr=" &
URLEncode(URLRoot() & "db/" & Dbid() &
"?a=dr&rid=" & [Record ID#]))
Uses formula URL to check and uncheck a checkbox that triggers a form rule to show/hide a form section.
#EMPOWER2015
7. Change to a different form dr
URLRoot() & "db/" & Dbid() &
"?a=dr&rid=" & [Record ID#]&
"&dfid=13"
When pressed this will display the record you are already on but with
an alternate form (dfid=13).
#EMPOWER2015
8. Assign to self then dr
URLRoot() & "db/" & Dbid() & "?a=API_EditRecord"&
"&AppToken=d9eascudwjxs2sesxkjccwgtq9r"&
"&rid="& [Record ID#]&
"&_fid_97=" & URLEncode(User()) &
"&rdr=" &
URLEncode(URLRoot() & "db/" & Dbid() &
"?a=dr&rid=" & [Record ID#])
Press a button and assign yourself as "Project Manager.
#EMPOWER2015
9. Create a project snapshot then dr
URLRoot()& "db/" &[_DBID_PROJECT_SNAPSHOTS]& "?a=API_AddRecord" &
"&apptoken=d9eascudwjxs2sesxkjccwgtq9r"&
"&_fid_6=" & [Project Name]&
"&_fid_7=" & [Status]&
"&_fid_8=" & [Priority]&
"&_fid_9=" & [Est Start Date]&
"&_fid_10=" & [Est End Date]&
"&rdr=" &
URLEncode(URLRoot() & "db/" & Dbid() &
"?a=dr&rid=" & [Record ID#])
#EMPOWER2015
This formula sets a variable called url with an
API_EditRecord and changes fid_28 to Completed.
The bottom of this formula then calls the url and reloads the
page from where you came.
That means:
If launched from view form returns to view form
If launched from edit form returns to edit form
If launched from report – returns to report
If launched from dashboard- returns to dashboard
This formula is a derivation of a formula originally published
in the community forum by QuickBase Solution Provider:
Mark Shnier, Your QuickBase Coach,
http://www.yourquickbasecoach.com.
10. Edit record and return to starting point
var text url=
URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" &
"&rid=" & [Record ID#]&
"&apptoken=d9eascudwjxs2sesxkjccwgtq9r"&
"&_fid_28=Completed";
"javascript:" &
"$.get('" &
$url &
"',function(){" &
"location.reload();"&
"});" &
"void(0);”
#EMPOWER2015
Craig McElroy
J. Lodge
Database Director
Resident QuickBase Guru
#EMPOWER2015
We utilize our experience and best practices to help companies improve call center
processes with a fresh, objective perspective
of their organization and voice of their customer.
J.Lodge is a US based
Quality Assurance Monitoring Provider
Established 1999
First American Call Monitoring Company
Corporate Headquarters in Fort Myers FL
Employ Americans with Disabilities
Over 300 agents employed
Over 150 applicants available for hire
Geographically diverse work-at-home offices
12298 Matterhorn Road, Fort Myers, FL 33913 / www.jlodge.com
#EMPOWER2015
1) Form Rule: Hide
2) Form Rule: Unrequire
3) Form Rule: Clear (or Change to Blank)
4) Form Rule: Current Time and Current User
5) Form Rule: Abort Save
6) Formula to check conditions to abort save
12 Form and Formula use cases
7) Formula to check conditions to apply fields
8) Formula for Fiscal Periods
9) Formula for Trending Percentage
10) Formula for Tagging records for Locks
11) Formula for Tagging records for Emails
12) Formulas for Archiving Records
#EMPOWER2015
Hide fields that are not
needed on your forms based
on conditional logic!
Form Rule: Hide
#EMPOWER2015
Form Rule: Unrequire
Require and Unrequire fields to
make sure data is captured
ONLY when you want it!
#EMPOWER2015
Form Rule: Clear
Change field to blank when it is
hidden so that it does not
capture unwanted data.
#EMPOWER2015
Form Rule:
Current Time and
Current User
Use Change rules to select
user and date. This way
they can be edited
afterward as needed.
#EMPOWER2015
Form Rule: Abort Save
Prevent records from being
saved to your application when
certain conditions occur or do
not occur.
#EMPOWER2015
Formula to check conditions to abort save
Use a List formula in conjunction with If/Case formulas
to trigger events which abort the saving of conflicts.
#EMPOWER2015
Formula to check conditions to apply fields
Use a Case formula to cause a checkbox to be true or
false, which determines when fields are applicable.
#EMPOWER2015
Formula for Fiscal Periods
Format custom date
ranges to sort
alphanumerically, while
also being clear on the
range of dates included.
#EMPOWER2015
Formula for Trending Percentage
Use a Case formula to trend percentage of occurrences,
excluding results which are not applicable.
#EMPOWER2015
Formula for Tagging records for Locks
Use a formula to select records which can or cannot be
modified by certain user roles.
#EMPOWER2015
Formula for Tagging records for Emails
Use a Case formula to show records in a report only on
the days in which you want the report to be emailed.
#EMPOWER2015
Formulas for Archiving Records
Convert your records
into text strings to
store in another table
where formula fields
extract the original
record’s results.
#EMPOWER2015
Formulas for Archiving Records
Case and Mid formulas are used to convert text string
characters into original results.
#EMPOWER2015
Application designed to capture Evaluations.
Entire application designed in less than 5 hours.
Sample Application
Questions
Mastering Form Rules and Formulas in QuickBase

Weitere ähnliche Inhalte

Was ist angesagt?

프로그래머스 프론트엔드 아키텍처 변천사: 좋은 개발 경험을 찾아서
프로그래머스 프론트엔드 아키텍처 변천사: 좋은 개발 경험을 찾아서프로그래머스 프론트엔드 아키텍처 변천사: 좋은 개발 경험을 찾아서
프로그래머스 프론트엔드 아키텍처 변천사: 좋은 개발 경험을 찾아서Eunsu Kim
 
[데브루키] 이벤트 드리븐 아키텍쳐
[데브루키] 이벤트 드리븐 아키텍쳐[데브루키] 이벤트 드리븐 아키텍쳐
[데브루키] 이벤트 드리븐 아키텍쳐MinGeun Park
 
Creative Conference 2017 「リギングヘルプミー」
Creative Conference 2017 「リギングヘルプミー」Creative Conference 2017 「リギングヘルプミー」
Creative Conference 2017 「リギングヘルプミー」Tetsuya Nozawa
 
PINTOS Operating system homework 2
PINTOS Operating system homework 2PINTOS Operating system homework 2
PINTOS Operating system homework 2Gichan Lee
 
GoとDDDでモバイルオーダープラットフォームを 型安全に作り直した話
GoとDDDでモバイルオーダープラットフォームを 型安全に作り直した話GoとDDDでモバイルオーダープラットフォームを 型安全に作り直した話
GoとDDDでモバイルオーダープラットフォームを 型安全に作り直した話Takuya Kikuchi
 
윤석주, 신입 게임 프로그래머가 되는 법 - 넥슨 채용 프로세스 단계별 분석, NDC2019
윤석주, 신입 게임 프로그래머가 되는 법 - 넥슨 채용 프로세스 단계별 분석, NDC2019윤석주, 신입 게임 프로그래머가 되는 법 - 넥슨 채용 프로세스 단계별 분석, NDC2019
윤석주, 신입 게임 프로그래머가 되는 법 - 넥슨 채용 프로세스 단계별 분석, NDC2019devCAT Studio, NEXON
 
[IGC 2017] 청강문화산업대학 TGB 김다찬 - 소년이여 개발자가 되어라 - 계획성 0% 막무가내 HP소드 개발기
[IGC 2017] 청강문화산업대학 TGB 김다찬 - 소년이여 개발자가 되어라 - 계획성 0% 막무가내 HP소드 개발기[IGC 2017] 청강문화산업대학 TGB 김다찬 - 소년이여 개발자가 되어라 - 계획성 0% 막무가내 HP소드 개발기
[IGC 2017] 청강문화산업대학 TGB 김다찬 - 소년이여 개발자가 되어라 - 계획성 0% 막무가내 HP소드 개발기강 민우
 
サムライスピリッツキャラクター制作事例 キャラクターモデル編
 サムライスピリッツキャラクター制作事例 キャラクターモデル編 サムライスピリッツキャラクター制作事例 キャラクターモデル編
サムライスピリッツキャラクター制作事例 キャラクターモデル編SNK
 
Substanceテクスチャワークフロー XXX編
Substanceテクスチャワークフロー XXX編Substanceテクスチャワークフロー XXX編
Substanceテクスチャワークフロー XXX編Satoshi Kodaira
 
서비스중인 게임 DB 설계 (쿠키런 편)
서비스중인 게임 DB 설계 (쿠키런 편)서비스중인 게임 DB 설계 (쿠키런 편)
서비스중인 게임 DB 설계 (쿠키런 편)_ce
 
初心者ががんばる建築ビジュアライゼーション:ライティング編 - UE4勉強会in大阪#4
初心者ががんばる建築ビジュアライゼーション:ライティング編 - UE4勉強会in大阪#4初心者ががんばる建築ビジュアライゼーション:ライティング編 - UE4勉強会in大阪#4
初心者ががんばる建築ビジュアライゼーション:ライティング編 - UE4勉強会in大阪#4Tatsuya Sumisaki
 
[1216 박민근] 게임회사취업및이직에관한조언
[1216 박민근] 게임회사취업및이직에관한조언[1216 박민근] 게임회사취업및이직에관한조언
[1216 박민근] 게임회사취업및이직에관한조언MinGeun Park
 
My sql connector.c++ 기본 가이드
My sql connector.c++ 기본 가이드My sql connector.c++ 기본 가이드
My sql connector.c++ 기본 가이드ChungYi1
 
テストを書こう、Unity編
テストを書こう、Unity編テストを書こう、Unity編
テストを書こう、Unity編Hiroto Imoto
 
マジシャンズデッド ポストモーテム ~マテリアル編~ (株式会社Byking: 鈴木孝司様、成相真治様) #UE4DD
マジシャンズデッド ポストモーテム ~マテリアル編~ (株式会社Byking: 鈴木孝司様、成相真治様) #UE4DDマジシャンズデッド ポストモーテム ~マテリアル編~ (株式会社Byking: 鈴木孝司様、成相真治様) #UE4DD
マジシャンズデッド ポストモーテム ~マテリアル編~ (株式会社Byking: 鈴木孝司様、成相真治様) #UE4DDエピック・ゲームズ・ジャパン Epic Games Japan
 
【Unite 2017 Tokyo】「オルタナティブガールズ」〜50cmの距離感で3D美少女を最高にかわいく魅せる方法〜
【Unite 2017 Tokyo】「オルタナティブガールズ」〜50cmの距離感で3D美少女を最高にかわいく魅せる方法〜【Unite 2017 Tokyo】「オルタナティブガールズ」〜50cmの距離感で3D美少女を最高にかわいく魅せる方法〜
【Unite 2017 Tokyo】「オルタナティブガールズ」〜50cmの距離感で3D美少女を最高にかわいく魅せる方法〜Unite2017Tokyo
 
Lesson 5-1 give ab
Lesson 5-1 give abLesson 5-1 give ab
Lesson 5-1 give abmerasan
 
B2C企業向けクラウドID基盤「 SELMID 」のご紹介 - OpenID Summit 2020
B2C企業向けクラウドID基盤「 SELMID 」のご紹介 - OpenID Summit 2020B2C企業向けクラウドID基盤「 SELMID 」のご紹介 - OpenID Summit 2020
B2C企業向けクラウドID基盤「 SELMID 」のご紹介 - OpenID Summit 2020OpenID Foundation Japan
 
【GTMF2018OSAKA】ScriptableRenderPipelineでアプリに最適な描画をしよう
【GTMF2018OSAKA】ScriptableRenderPipelineでアプリに最適な描画をしよう【GTMF2018OSAKA】ScriptableRenderPipelineでアプリに最適な描画をしよう
【GTMF2018OSAKA】ScriptableRenderPipelineでアプリに最適な描画をしようUnity Technologies Japan K.K.
 

Was ist angesagt? (20)

프로그래머스 프론트엔드 아키텍처 변천사: 좋은 개발 경험을 찾아서
프로그래머스 프론트엔드 아키텍처 변천사: 좋은 개발 경험을 찾아서프로그래머스 프론트엔드 아키텍처 변천사: 좋은 개발 경험을 찾아서
프로그래머스 프론트엔드 아키텍처 변천사: 좋은 개발 경험을 찾아서
 
[데브루키] 이벤트 드리븐 아키텍쳐
[데브루키] 이벤트 드리븐 아키텍쳐[데브루키] 이벤트 드리븐 아키텍쳐
[데브루키] 이벤트 드리븐 아키텍쳐
 
Creative Conference 2017 「リギングヘルプミー」
Creative Conference 2017 「リギングヘルプミー」Creative Conference 2017 「リギングヘルプミー」
Creative Conference 2017 「リギングヘルプミー」
 
행렬
행렬행렬
행렬
 
PINTOS Operating system homework 2
PINTOS Operating system homework 2PINTOS Operating system homework 2
PINTOS Operating system homework 2
 
GoとDDDでモバイルオーダープラットフォームを 型安全に作り直した話
GoとDDDでモバイルオーダープラットフォームを 型安全に作り直した話GoとDDDでモバイルオーダープラットフォームを 型安全に作り直した話
GoとDDDでモバイルオーダープラットフォームを 型安全に作り直した話
 
윤석주, 신입 게임 프로그래머가 되는 법 - 넥슨 채용 프로세스 단계별 분석, NDC2019
윤석주, 신입 게임 프로그래머가 되는 법 - 넥슨 채용 프로세스 단계별 분석, NDC2019윤석주, 신입 게임 프로그래머가 되는 법 - 넥슨 채용 프로세스 단계별 분석, NDC2019
윤석주, 신입 게임 프로그래머가 되는 법 - 넥슨 채용 프로세스 단계별 분석, NDC2019
 
[IGC 2017] 청강문화산업대학 TGB 김다찬 - 소년이여 개발자가 되어라 - 계획성 0% 막무가내 HP소드 개발기
[IGC 2017] 청강문화산업대학 TGB 김다찬 - 소년이여 개발자가 되어라 - 계획성 0% 막무가내 HP소드 개발기[IGC 2017] 청강문화산업대학 TGB 김다찬 - 소년이여 개발자가 되어라 - 계획성 0% 막무가내 HP소드 개발기
[IGC 2017] 청강문화산업대학 TGB 김다찬 - 소년이여 개발자가 되어라 - 계획성 0% 막무가내 HP소드 개발기
 
サムライスピリッツキャラクター制作事例 キャラクターモデル編
 サムライスピリッツキャラクター制作事例 キャラクターモデル編 サムライスピリッツキャラクター制作事例 キャラクターモデル編
サムライスピリッツキャラクター制作事例 キャラクターモデル編
 
Substanceテクスチャワークフロー XXX編
Substanceテクスチャワークフロー XXX編Substanceテクスチャワークフロー XXX編
Substanceテクスチャワークフロー XXX編
 
서비스중인 게임 DB 설계 (쿠키런 편)
서비스중인 게임 DB 설계 (쿠키런 편)서비스중인 게임 DB 설계 (쿠키런 편)
서비스중인 게임 DB 설계 (쿠키런 편)
 
初心者ががんばる建築ビジュアライゼーション:ライティング編 - UE4勉強会in大阪#4
初心者ががんばる建築ビジュアライゼーション:ライティング編 - UE4勉強会in大阪#4初心者ががんばる建築ビジュアライゼーション:ライティング編 - UE4勉強会in大阪#4
初心者ががんばる建築ビジュアライゼーション:ライティング編 - UE4勉強会in大阪#4
 
[1216 박민근] 게임회사취업및이직에관한조언
[1216 박민근] 게임회사취업및이직에관한조언[1216 박민근] 게임회사취업및이직에관한조언
[1216 박민근] 게임회사취업및이직에관한조언
 
My sql connector.c++ 기본 가이드
My sql connector.c++ 기본 가이드My sql connector.c++ 기본 가이드
My sql connector.c++ 기본 가이드
 
テストを書こう、Unity編
テストを書こう、Unity編テストを書こう、Unity編
テストを書こう、Unity編
 
マジシャンズデッド ポストモーテム ~マテリアル編~ (株式会社Byking: 鈴木孝司様、成相真治様) #UE4DD
マジシャンズデッド ポストモーテム ~マテリアル編~ (株式会社Byking: 鈴木孝司様、成相真治様) #UE4DDマジシャンズデッド ポストモーテム ~マテリアル編~ (株式会社Byking: 鈴木孝司様、成相真治様) #UE4DD
マジシャンズデッド ポストモーテム ~マテリアル編~ (株式会社Byking: 鈴木孝司様、成相真治様) #UE4DD
 
【Unite 2017 Tokyo】「オルタナティブガールズ」〜50cmの距離感で3D美少女を最高にかわいく魅せる方法〜
【Unite 2017 Tokyo】「オルタナティブガールズ」〜50cmの距離感で3D美少女を最高にかわいく魅せる方法〜【Unite 2017 Tokyo】「オルタナティブガールズ」〜50cmの距離感で3D美少女を最高にかわいく魅せる方法〜
【Unite 2017 Tokyo】「オルタナティブガールズ」〜50cmの距離感で3D美少女を最高にかわいく魅せる方法〜
 
Lesson 5-1 give ab
Lesson 5-1 give abLesson 5-1 give ab
Lesson 5-1 give ab
 
B2C企業向けクラウドID基盤「 SELMID 」のご紹介 - OpenID Summit 2020
B2C企業向けクラウドID基盤「 SELMID 」のご紹介 - OpenID Summit 2020B2C企業向けクラウドID基盤「 SELMID 」のご紹介 - OpenID Summit 2020
B2C企業向けクラウドID基盤「 SELMID 」のご紹介 - OpenID Summit 2020
 
【GTMF2018OSAKA】ScriptableRenderPipelineでアプリに最適な描画をしよう
【GTMF2018OSAKA】ScriptableRenderPipelineでアプリに最適な描画をしよう【GTMF2018OSAKA】ScriptableRenderPipelineでアプリに最適な描画をしよう
【GTMF2018OSAKA】ScriptableRenderPipelineでアプリに最適な描画をしよう
 

Andere mochten auch

The 5 Best-Kept QuickBase Secrets
The 5 Best-Kept QuickBase SecretsThe 5 Best-Kept QuickBase Secrets
The 5 Best-Kept QuickBase SecretsQuickBase, Inc.
 
Relationship Therapy: Deeper Connections for your QuickBase Apps
Relationship Therapy: Deeper Connections for your QuickBase AppsRelationship Therapy: Deeper Connections for your QuickBase Apps
Relationship Therapy: Deeper Connections for your QuickBase AppsQuickBase, Inc.
 
Magic Buttons - George Courtsunis
Magic Buttons - George CourtsunisMagic Buttons - George Courtsunis
Magic Buttons - George CourtsunisQuickBase, Inc.
 
How Spyder Trap Transformed Its Business with QuickBase Sync
How Spyder Trap Transformed Its Business with QuickBase SyncHow Spyder Trap Transformed Its Business with QuickBase Sync
How Spyder Trap Transformed Its Business with QuickBase SyncQuickBase, Inc.
 
QuickBase Unleashed: Building Advanced, Hybrid, and Fully Custom QuickBase Apps
QuickBase Unleashed: Building Advanced, Hybrid, and Fully Custom QuickBase AppsQuickBase Unleashed: Building Advanced, Hybrid, and Fully Custom QuickBase Apps
QuickBase Unleashed: Building Advanced, Hybrid, and Fully Custom QuickBase AppsQuickBase, Inc.
 
Building A Quick Base Mobile Application - Phil Gross
Building A Quick Base Mobile Application - Phil GrossBuilding A Quick Base Mobile Application - Phil Gross
Building A Quick Base Mobile Application - Phil GrossQuickBase, Inc.
 
Blueprinting Your QuickBase Apps
Blueprinting Your QuickBase AppsBlueprinting Your QuickBase Apps
Blueprinting Your QuickBase AppsQuickBase, Inc.
 
Three Guiding Principles to Ensure Success with QuickBase
Three Guiding Principles to Ensure Success with QuickBaseThree Guiding Principles to Ensure Success with QuickBase
Three Guiding Principles to Ensure Success with QuickBaseQuickBase, Inc.
 
Notifications: Keep Your Team Moving with Perfect Reminders and Subscription ...
Notifications: Keep Your Team Moving with Perfect Reminders and Subscription ...Notifications: Keep Your Team Moving with Perfect Reminders and Subscription ...
Notifications: Keep Your Team Moving with Perfect Reminders and Subscription ...QuickBase, Inc.
 
QuickBase for the Outside World: Building for Field Users, Clients and Vendors
QuickBase for the Outside World: Building for Field Users, Clients and VendorsQuickBase for the Outside World: Building for Field Users, Clients and Vendors
QuickBase for the Outside World: Building for Field Users, Clients and VendorsQuickBase, Inc.
 
How QuickBase Sync Will Change the Way You Solve Problems
How QuickBase Sync Will Change the Way You Solve ProblemsHow QuickBase Sync Will Change the Way You Solve Problems
How QuickBase Sync Will Change the Way You Solve ProblemsQuickBase, Inc.
 
Understanding a QuickBase App You Didn't Build
Understanding a QuickBase App You Didn't Build Understanding a QuickBase App You Didn't Build
Understanding a QuickBase App You Didn't Build QuickBase, Inc.
 
Welcome from Intuit QuickBase Keynote
Welcome from Intuit QuickBase KeynoteWelcome from Intuit QuickBase Keynote
Welcome from Intuit QuickBase KeynoteQuickBase, Inc.
 
Guiding Principles on Effective Rapid Application Development
Guiding Principles on Effective Rapid Application Development Guiding Principles on Effective Rapid Application Development
Guiding Principles on Effective Rapid Application Development QuickBase, Inc.
 
Inspections, Assessments and Audits, Oh My!
Inspections, Assessments and Audits, Oh My!Inspections, Assessments and Audits, Oh My!
Inspections, Assessments and Audits, Oh My!QuickBase, Inc.
 
How StubHub Got Its Projects In-Line with QuickBase
How StubHub Got Its Projects In-Line with QuickBaseHow StubHub Got Its Projects In-Line with QuickBase
How StubHub Got Its Projects In-Line with QuickBaseQuickBase, Inc.
 
Guiding Principles for the Low Code Revolution – Intuit QuickBase EMPOWER2015...
Guiding Principles for the Low Code Revolution – Intuit QuickBase EMPOWER2015...Guiding Principles for the Low Code Revolution – Intuit QuickBase EMPOWER2015...
Guiding Principles for the Low Code Revolution – Intuit QuickBase EMPOWER2015...QuickBase, Inc.
 
Giving Power to the People: Strategies for Successful User Adoption of QuickBase
Giving Power to the People: Strategies for Successful User Adoption of QuickBaseGiving Power to the People: Strategies for Successful User Adoption of QuickBase
Giving Power to the People: Strategies for Successful User Adoption of QuickBaseQuickBase, Inc.
 
Creating an IT Revolution within your Organization - QuickBase, Inc. at CIO V...
Creating an IT Revolution within your Organization - QuickBase, Inc. at CIO V...Creating an IT Revolution within your Organization - QuickBase, Inc. at CIO V...
Creating an IT Revolution within your Organization - QuickBase, Inc. at CIO V...QuickBase, Inc.
 

Andere mochten auch (20)

The 5 Best-Kept QuickBase Secrets
The 5 Best-Kept QuickBase SecretsThe 5 Best-Kept QuickBase Secrets
The 5 Best-Kept QuickBase Secrets
 
Relationship Therapy: Deeper Connections for your QuickBase Apps
Relationship Therapy: Deeper Connections for your QuickBase AppsRelationship Therapy: Deeper Connections for your QuickBase Apps
Relationship Therapy: Deeper Connections for your QuickBase Apps
 
Magic Buttons - George Courtsunis
Magic Buttons - George CourtsunisMagic Buttons - George Courtsunis
Magic Buttons - George Courtsunis
 
How Spyder Trap Transformed Its Business with QuickBase Sync
How Spyder Trap Transformed Its Business with QuickBase SyncHow Spyder Trap Transformed Its Business with QuickBase Sync
How Spyder Trap Transformed Its Business with QuickBase Sync
 
QuickBase Unleashed: Building Advanced, Hybrid, and Fully Custom QuickBase Apps
QuickBase Unleashed: Building Advanced, Hybrid, and Fully Custom QuickBase AppsQuickBase Unleashed: Building Advanced, Hybrid, and Fully Custom QuickBase Apps
QuickBase Unleashed: Building Advanced, Hybrid, and Fully Custom QuickBase Apps
 
Building A Quick Base Mobile Application - Phil Gross
Building A Quick Base Mobile Application - Phil GrossBuilding A Quick Base Mobile Application - Phil Gross
Building A Quick Base Mobile Application - Phil Gross
 
Blueprinting Your QuickBase Apps
Blueprinting Your QuickBase AppsBlueprinting Your QuickBase Apps
Blueprinting Your QuickBase Apps
 
Three Guiding Principles to Ensure Success with QuickBase
Three Guiding Principles to Ensure Success with QuickBaseThree Guiding Principles to Ensure Success with QuickBase
Three Guiding Principles to Ensure Success with QuickBase
 
Notifications: Keep Your Team Moving with Perfect Reminders and Subscription ...
Notifications: Keep Your Team Moving with Perfect Reminders and Subscription ...Notifications: Keep Your Team Moving with Perfect Reminders and Subscription ...
Notifications: Keep Your Team Moving with Perfect Reminders and Subscription ...
 
QuickBase for the Outside World: Building for Field Users, Clients and Vendors
QuickBase for the Outside World: Building for Field Users, Clients and VendorsQuickBase for the Outside World: Building for Field Users, Clients and Vendors
QuickBase for the Outside World: Building for Field Users, Clients and Vendors
 
How QuickBase Sync Will Change the Way You Solve Problems
How QuickBase Sync Will Change the Way You Solve ProblemsHow QuickBase Sync Will Change the Way You Solve Problems
How QuickBase Sync Will Change the Way You Solve Problems
 
QuickBase as an ERP
QuickBase as an ERPQuickBase as an ERP
QuickBase as an ERP
 
Understanding a QuickBase App You Didn't Build
Understanding a QuickBase App You Didn't Build Understanding a QuickBase App You Didn't Build
Understanding a QuickBase App You Didn't Build
 
Welcome from Intuit QuickBase Keynote
Welcome from Intuit QuickBase KeynoteWelcome from Intuit QuickBase Keynote
Welcome from Intuit QuickBase Keynote
 
Guiding Principles on Effective Rapid Application Development
Guiding Principles on Effective Rapid Application Development Guiding Principles on Effective Rapid Application Development
Guiding Principles on Effective Rapid Application Development
 
Inspections, Assessments and Audits, Oh My!
Inspections, Assessments and Audits, Oh My!Inspections, Assessments and Audits, Oh My!
Inspections, Assessments and Audits, Oh My!
 
How StubHub Got Its Projects In-Line with QuickBase
How StubHub Got Its Projects In-Line with QuickBaseHow StubHub Got Its Projects In-Line with QuickBase
How StubHub Got Its Projects In-Line with QuickBase
 
Guiding Principles for the Low Code Revolution – Intuit QuickBase EMPOWER2015...
Guiding Principles for the Low Code Revolution – Intuit QuickBase EMPOWER2015...Guiding Principles for the Low Code Revolution – Intuit QuickBase EMPOWER2015...
Guiding Principles for the Low Code Revolution – Intuit QuickBase EMPOWER2015...
 
Giving Power to the People: Strategies for Successful User Adoption of QuickBase
Giving Power to the People: Strategies for Successful User Adoption of QuickBaseGiving Power to the People: Strategies for Successful User Adoption of QuickBase
Giving Power to the People: Strategies for Successful User Adoption of QuickBase
 
Creating an IT Revolution within your Organization - QuickBase, Inc. at CIO V...
Creating an IT Revolution within your Organization - QuickBase, Inc. at CIO V...Creating an IT Revolution within your Organization - QuickBase, Inc. at CIO V...
Creating an IT Revolution within your Organization - QuickBase, Inc. at CIO V...
 

Ähnlich wie Mastering Form Rules and Formulas in QuickBase

Luke Cushanick Admin Tips and Tricks for Salesforce Trailblazer Community Chr...
Luke Cushanick Admin Tips and Tricks for Salesforce Trailblazer Community Chr...Luke Cushanick Admin Tips and Tricks for Salesforce Trailblazer Community Chr...
Luke Cushanick Admin Tips and Tricks for Salesforce Trailblazer Community Chr...Anna Loughnan Colquhoun
 
Engage 2013 - Flexible Data Access with APIs
Engage 2013 - Flexible Data Access with APIsEngage 2013 - Flexible Data Access with APIs
Engage 2013 - Flexible Data Access with APIsWebtrends
 
sf_school_hard_knocks
sf_school_hard_knockssf_school_hard_knocks
sf_school_hard_knocksAndrew Nerney
 
Rails MVC by Sergiy Koshovyi
Rails MVC by Sergiy KoshovyiRails MVC by Sergiy Koshovyi
Rails MVC by Sergiy KoshovyiPivorak MeetUp
 
Subscribed zuora forsalesforce training -section301-final
Subscribed zuora forsalesforce training -section301-finalSubscribed zuora forsalesforce training -section301-final
Subscribed zuora forsalesforce training -section301-finalSamuel Sharaf
 
Admin Guiding Query Plans
Admin Guiding Query PlansAdmin Guiding Query Plans
Admin Guiding Query Plansrsnarayanan
 
Secure Development on the Salesforce Platform - Part 2
Secure Development on the Salesforce Platform - Part 2Secure Development on the Salesforce Platform - Part 2
Secure Development on the Salesforce Platform - Part 2Salesforce Developers
 
...and thus your forms automagically disappeared
...and thus your forms automagically disappeared...and thus your forms automagically disappeared
...and thus your forms automagically disappearedLuc Bors
 
Getting start Java EE Action-Based MVC with Thymeleaf
Getting start Java EE Action-Based MVC with ThymeleafGetting start Java EE Action-Based MVC with Thymeleaf
Getting start Java EE Action-Based MVC with ThymeleafMasatoshi Tada
 
Apex Enterprise Patterns: Building Strong Foundations
Apex Enterprise Patterns: Building Strong FoundationsApex Enterprise Patterns: Building Strong Foundations
Apex Enterprise Patterns: Building Strong FoundationsSalesforce Developers
 
#FunLearnSeason2 - Talk 2 : Publishing your App on Appexchange
#FunLearnSeason2 - Talk 2 : Publishing your App on Appexchange#FunLearnSeason2 - Talk 2 : Publishing your App on Appexchange
#FunLearnSeason2 - Talk 2 : Publishing your App on AppexchangeSikha Baid ☁
 
nter-pod Revolutions: Connected Enterprise Solution in Oracle EPM Cloud
nter-pod Revolutions: Connected Enterprise Solution in Oracle EPM Cloud nter-pod Revolutions: Connected Enterprise Solution in Oracle EPM Cloud
nter-pod Revolutions: Connected Enterprise Solution in Oracle EPM Cloud Alithya
 
Introduction to ASP.NET MVC
Introduction to ASP.NET MVCIntroduction to ASP.NET MVC
Introduction to ASP.NET MVCMaarten Balliauw
 
Look Ma, No Apex: Mobile Apps with RemoteObject and Mobile SDK
Look Ma, No Apex: Mobile Apps with RemoteObject and Mobile SDKLook Ma, No Apex: Mobile Apps with RemoteObject and Mobile SDK
Look Ma, No Apex: Mobile Apps with RemoteObject and Mobile SDKSalesforce Developers
 
5 Reasons To Love CodeIgniter
5 Reasons To Love CodeIgniter5 Reasons To Love CodeIgniter
5 Reasons To Love CodeIgniternicdev
 
Sales force certification-lab
Sales force certification-labSales force certification-lab
Sales force certification-labAmit Sharma
 
People code events 1
People code events 1People code events 1
People code events 1Samarth Arora
 
A G S006 Little 091807
A G S006  Little 091807A G S006  Little 091807
A G S006 Little 091807Dreamforce07
 
Using feature teams to deliver high business value
Using feature teams to deliver high business valueUsing feature teams to deliver high business value
Using feature teams to deliver high business valueThoughtworks
 

Ähnlich wie Mastering Form Rules and Formulas in QuickBase (20)

Luke Cushanick Admin Tips and Tricks for Salesforce Trailblazer Community Chr...
Luke Cushanick Admin Tips and Tricks for Salesforce Trailblazer Community Chr...Luke Cushanick Admin Tips and Tricks for Salesforce Trailblazer Community Chr...
Luke Cushanick Admin Tips and Tricks for Salesforce Trailblazer Community Chr...
 
Engage 2013 - Flexible Data Access with APIs
Engage 2013 - Flexible Data Access with APIsEngage 2013 - Flexible Data Access with APIs
Engage 2013 - Flexible Data Access with APIs
 
sf_school_hard_knocks
sf_school_hard_knockssf_school_hard_knocks
sf_school_hard_knocks
 
Rails MVC by Sergiy Koshovyi
Rails MVC by Sergiy KoshovyiRails MVC by Sergiy Koshovyi
Rails MVC by Sergiy Koshovyi
 
Subscribed zuora forsalesforce training -section301-final
Subscribed zuora forsalesforce training -section301-finalSubscribed zuora forsalesforce training -section301-final
Subscribed zuora forsalesforce training -section301-final
 
Admin Guiding Query Plans
Admin Guiding Query PlansAdmin Guiding Query Plans
Admin Guiding Query Plans
 
Secure Development on the Salesforce Platform - Part 2
Secure Development on the Salesforce Platform - Part 2Secure Development on the Salesforce Platform - Part 2
Secure Development on the Salesforce Platform - Part 2
 
...and thus your forms automagically disappeared
...and thus your forms automagically disappeared...and thus your forms automagically disappeared
...and thus your forms automagically disappeared
 
Getting start Java EE Action-Based MVC with Thymeleaf
Getting start Java EE Action-Based MVC with ThymeleafGetting start Java EE Action-Based MVC with Thymeleaf
Getting start Java EE Action-Based MVC with Thymeleaf
 
Apex Enterprise Patterns: Building Strong Foundations
Apex Enterprise Patterns: Building Strong FoundationsApex Enterprise Patterns: Building Strong Foundations
Apex Enterprise Patterns: Building Strong Foundations
 
#FunLearnSeason2 - Talk 2 : Publishing your App on Appexchange
#FunLearnSeason2 - Talk 2 : Publishing your App on Appexchange#FunLearnSeason2 - Talk 2 : Publishing your App on Appexchange
#FunLearnSeason2 - Talk 2 : Publishing your App on Appexchange
 
nter-pod Revolutions: Connected Enterprise Solution in Oracle EPM Cloud
nter-pod Revolutions: Connected Enterprise Solution in Oracle EPM Cloud nter-pod Revolutions: Connected Enterprise Solution in Oracle EPM Cloud
nter-pod Revolutions: Connected Enterprise Solution in Oracle EPM Cloud
 
Introduction to ASP.NET MVC
Introduction to ASP.NET MVCIntroduction to ASP.NET MVC
Introduction to ASP.NET MVC
 
Look Ma, No Apex: Mobile Apps with RemoteObject and Mobile SDK
Look Ma, No Apex: Mobile Apps with RemoteObject and Mobile SDKLook Ma, No Apex: Mobile Apps with RemoteObject and Mobile SDK
Look Ma, No Apex: Mobile Apps with RemoteObject and Mobile SDK
 
5 Reasons To Love CodeIgniter
5 Reasons To Love CodeIgniter5 Reasons To Love CodeIgniter
5 Reasons To Love CodeIgniter
 
mean stack
mean stackmean stack
mean stack
 
Sales force certification-lab
Sales force certification-labSales force certification-lab
Sales force certification-lab
 
People code events 1
People code events 1People code events 1
People code events 1
 
A G S006 Little 091807
A G S006  Little 091807A G S006  Little 091807
A G S006 Little 091807
 
Using feature teams to deliver high business value
Using feature teams to deliver high business valueUsing feature teams to deliver high business value
Using feature teams to deliver high business value
 

Mehr von QuickBase, Inc.

Shrinking the Custom Application Development Cycle with Low-Code Platforms
Shrinking the Custom Application Development Cycle with Low-Code PlatformsShrinking the Custom Application Development Cycle with Low-Code Platforms
Shrinking the Custom Application Development Cycle with Low-Code PlatformsQuickBase, Inc.
 
QuickBase Digital Transformation Survey Infographic
QuickBase Digital Transformation Survey InfographicQuickBase Digital Transformation Survey Infographic
QuickBase Digital Transformation Survey InfographicQuickBase, Inc.
 
Get More Done with QuickBase Add-Ons
Get More Done with QuickBase Add-OnsGet More Done with QuickBase Add-Ons
Get More Done with QuickBase Add-OnsQuickBase, Inc.
 
From Spreadsheet Hell to Streamlined Automation with QuickBase
From Spreadsheet Hell to Streamlined Automation with QuickBaseFrom Spreadsheet Hell to Streamlined Automation with QuickBase
From Spreadsheet Hell to Streamlined Automation with QuickBaseQuickBase, Inc.
 
From Paper to Tablet Overnight: A QuickBase Business Transformation Story
From Paper to Tablet Overnight: A QuickBase Business Transformation StoryFrom Paper to Tablet Overnight: A QuickBase Business Transformation Story
From Paper to Tablet Overnight: A QuickBase Business Transformation StoryQuickBase, Inc.
 
Build Amazing Charts and Graphs with Code Pages in QuickBase
Build Amazing Charts and Graphs with Code Pages in QuickBaseBuild Amazing Charts and Graphs with Code Pages in QuickBase
Build Amazing Charts and Graphs with Code Pages in QuickBaseQuickBase, Inc.
 
Finish Strong -- Successfully Rolling Out Your Killer QuickBase App
Finish Strong -- Successfully Rolling Out Your Killer QuickBase AppFinish Strong -- Successfully Rolling Out Your Killer QuickBase App
Finish Strong -- Successfully Rolling Out Your Killer QuickBase AppQuickBase, Inc.
 
Building a QuickBase Metropolis: Growth Planning for the Future
Building a QuickBase Metropolis: Growth Planning for the FutureBuilding a QuickBase Metropolis: Growth Planning for the Future
Building a QuickBase Metropolis: Growth Planning for the FutureQuickBase, Inc.
 
Bridging the Gap Between QuickBase and QuickBooks Build Amazing Charts and Gr...
Bridging the Gap Between QuickBase and QuickBooks Build Amazing Charts and Gr...Bridging the Gap Between QuickBase and QuickBooks Build Amazing Charts and Gr...
Bridging the Gap Between QuickBase and QuickBooks Build Amazing Charts and Gr...QuickBase, Inc.
 
7 Tips for Building a Well-Loved App with QuickBase
7 Tips for Building a Well-Loved App with QuickBase7 Tips for Building a Well-Loved App with QuickBase
7 Tips for Building a Well-Loved App with QuickBaseQuickBase, Inc.
 

Mehr von QuickBase, Inc. (12)

EMPOWER2017 Sneak Peek
EMPOWER2017 Sneak PeekEMPOWER2017 Sneak Peek
EMPOWER2017 Sneak Peek
 
Shrinking the Custom Application Development Cycle with Low-Code Platforms
Shrinking the Custom Application Development Cycle with Low-Code PlatformsShrinking the Custom Application Development Cycle with Low-Code Platforms
Shrinking the Custom Application Development Cycle with Low-Code Platforms
 
QuickBase Digital Transformation Survey Infographic
QuickBase Digital Transformation Survey InfographicQuickBase Digital Transformation Survey Infographic
QuickBase Digital Transformation Survey Infographic
 
Get More Done with QuickBase Add-Ons
Get More Done with QuickBase Add-OnsGet More Done with QuickBase Add-Ons
Get More Done with QuickBase Add-Ons
 
From Spreadsheet Hell to Streamlined Automation with QuickBase
From Spreadsheet Hell to Streamlined Automation with QuickBaseFrom Spreadsheet Hell to Streamlined Automation with QuickBase
From Spreadsheet Hell to Streamlined Automation with QuickBase
 
From Paper to Tablet Overnight: A QuickBase Business Transformation Story
From Paper to Tablet Overnight: A QuickBase Business Transformation StoryFrom Paper to Tablet Overnight: A QuickBase Business Transformation Story
From Paper to Tablet Overnight: A QuickBase Business Transformation Story
 
Forms 101
Forms 101Forms 101
Forms 101
 
Build Amazing Charts and Graphs with Code Pages in QuickBase
Build Amazing Charts and Graphs with Code Pages in QuickBaseBuild Amazing Charts and Graphs with Code Pages in QuickBase
Build Amazing Charts and Graphs with Code Pages in QuickBase
 
Finish Strong -- Successfully Rolling Out Your Killer QuickBase App
Finish Strong -- Successfully Rolling Out Your Killer QuickBase AppFinish Strong -- Successfully Rolling Out Your Killer QuickBase App
Finish Strong -- Successfully Rolling Out Your Killer QuickBase App
 
Building a QuickBase Metropolis: Growth Planning for the Future
Building a QuickBase Metropolis: Growth Planning for the FutureBuilding a QuickBase Metropolis: Growth Planning for the Future
Building a QuickBase Metropolis: Growth Planning for the Future
 
Bridging the Gap Between QuickBase and QuickBooks Build Amazing Charts and Gr...
Bridging the Gap Between QuickBase and QuickBooks Build Amazing Charts and Gr...Bridging the Gap Between QuickBase and QuickBooks Build Amazing Charts and Gr...
Bridging the Gap Between QuickBase and QuickBooks Build Amazing Charts and Gr...
 
7 Tips for Building a Well-Loved App with QuickBase
7 Tips for Building a Well-Loved App with QuickBase7 Tips for Building a Well-Loved App with QuickBase
7 Tips for Building a Well-Loved App with QuickBase
 

Kürzlich hochgeladen

WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...masabamasaba
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyviewmasabamasaba
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2
 
tonesoftg
tonesoftgtonesoftg
tonesoftglanshi9
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareJim McKeeth
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...masabamasaba
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...masabamasaba
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 

Kürzlich hochgeladen (20)

WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
WSO2CON 2024 - WSO2's Digital Transformation Journey with Choreo: A Platforml...
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
Microsoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdfMicrosoft AI Transformation Partner Playbook.pdf
Microsoft AI Transformation Partner Playbook.pdf
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
%in Hazyview+277-882-255-28 abortion pills for sale in Hazyview
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
Announcing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK SoftwareAnnouncing Codolex 2.0 from GDK Software
Announcing Codolex 2.0 from GDK Software
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 

Mastering Form Rules and Formulas in QuickBase

  • 1.
  • 2. App Building Best Practices Formulas and Form Rule Use Cases Kirk Trachy, QuickBase - Sales Engineer Craig McElroy, J. Lodge - Database Director
  • 3. #EMPOWER2015 ① Explore 17 Formulas ② Use 6 Form Rules ③ Test them ④ See how they work ⑤ Discuss best practices Agenda How to use Formulas and Form Rules to solve day-to-day workflow challenges
  • 6. #EMPOWER2015 ① Automate complex processes ② Provide custom user experiences ③ Ease new user adoption ④ Save training time ⑤ Simplify use Benefits of Buttons and Form Rules
  • 7. #EMPOWER2015 1) Change status 2) Change status then dashboard 3) Check a checkbox 4) Check / Uncheck checkbox dr 5) Check / Uncheck checkbox er Ten Buttons (Get “Magic Buttons” From Exchange) 6) Show/Hide Project Section 7) Change to a different form 8) Assign to self 9) Create a project snapshot 10) Edit record and return
  • 8. #EMPOWER2015 1. Change status to completed then dr URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" & "&rid=" & [Record ID#]& "&apptoken=d9eascudwjxs2sesxkjccwgtq9r"& "&_fid_28=Completed" & "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid() & "?a=dr&rid=" & [Record ID#]) Press the button and change status to "Completed" and then redirects to dr.
  • 9. #EMPOWER2015 2. Change status to completed then dashboard URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" & "&rid=" & [Record ID#]& "&apptoken=d9eascudwjxs2sesxkjccwgtq9r"& "&_fid_28=Completed" & "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid()) Press the button and change the status to "Completed”. Then redirects to dashboard.
  • 10. #EMPOWER2015 3. Check a checkbox then dr URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" & "&rid=" & [Record ID#]& "&apptoken=d9eascudwjxs2sesxkjccwgtq9r"& "&_fid_101=1" & "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid() & "?a=dr&rid=" & [Record ID#]) Press the button and this changes the "Checkbox" to checked.
  • 11. #EMPOWER2015 4. Check / Uncheck a checkbox then dr If([Checkbox]=false,URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" & "&rid=" & [Record ID#]& "&apptoken=d9eascudwjxs2sesxkjccwgtq9r"& "&_fid_101=1" & "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid() & "?a=dr&rid=" & [Record ID#]) , URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" & "&rid=" & [Record ID#]& "&apptoken=d9eascudwjxs2sesxkjccwgtq9r"& "&_fid_101=0" & "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid() & "?a=dr&rid=" & [Record ID#])) Press to check "Checkbox”. Press again and uncheck “Checkbox”. Left in display mode dr.
  • 12. #EMPOWER2015 5. Check / Uncheck a checkbox then er If([Checkbox]=false,URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" & "&rid=" & [Record ID#]& "&apptoken=d9eascudwjxs2sesxkjccwgtq9r"& "&_fid_101=1" & "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid() & "?a=er&rid=" & [Record ID#]) , URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" & "&rid=" & [Record ID#]& "&apptoken=d9eascudwjxs2sesxkjccwgtq9r"& "&_fid_101=0" & "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid() & "?a=er&rid=" & [Record ID#])) Press to check "Checkbox”. Press again and uncheck “Checkbox”. Left in display mode er.
  • 13. #EMPOWER2015 6. Show/Hide Project Section then dr If([Show Project Section]=false,URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" & "&rid=" & [Record ID#]& "&apptoken=d9eascudwjxs2sesxkjccwgtq9r"& "&_fid_105=1" & "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid() & "?a=dr&rid=" & [Record ID#]) , URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" & "&rid=" & [Record ID#]& "&apptoken=d9eascudwjxs2sesxkjccwgtq9r"& "&_fid_105=0" & "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid() & "?a=dr&rid=" & [Record ID#])) Uses formula URL to check and uncheck a checkbox that triggers a form rule to show/hide a form section.
  • 14. #EMPOWER2015 7. Change to a different form dr URLRoot() & "db/" & Dbid() & "?a=dr&rid=" & [Record ID#]& "&dfid=13" When pressed this will display the record you are already on but with an alternate form (dfid=13).
  • 15. #EMPOWER2015 8. Assign to self then dr URLRoot() & "db/" & Dbid() & "?a=API_EditRecord"& "&AppToken=d9eascudwjxs2sesxkjccwgtq9r"& "&rid="& [Record ID#]& "&_fid_97=" & URLEncode(User()) & "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid() & "?a=dr&rid=" & [Record ID#]) Press a button and assign yourself as "Project Manager.
  • 16. #EMPOWER2015 9. Create a project snapshot then dr URLRoot()& "db/" &[_DBID_PROJECT_SNAPSHOTS]& "?a=API_AddRecord" & "&apptoken=d9eascudwjxs2sesxkjccwgtq9r"& "&_fid_6=" & [Project Name]& "&_fid_7=" & [Status]& "&_fid_8=" & [Priority]& "&_fid_9=" & [Est Start Date]& "&_fid_10=" & [Est End Date]& "&rdr=" & URLEncode(URLRoot() & "db/" & Dbid() & "?a=dr&rid=" & [Record ID#])
  • 17. #EMPOWER2015 This formula sets a variable called url with an API_EditRecord and changes fid_28 to Completed. The bottom of this formula then calls the url and reloads the page from where you came. That means: If launched from view form returns to view form If launched from edit form returns to edit form If launched from report – returns to report If launched from dashboard- returns to dashboard This formula is a derivation of a formula originally published in the community forum by QuickBase Solution Provider: Mark Shnier, Your QuickBase Coach, http://www.yourquickbasecoach.com. 10. Edit record and return to starting point var text url= URLRoot()& "db/" &Dbid()& "?a=API_EditRecord" & "&rid=" & [Record ID#]& "&apptoken=d9eascudwjxs2sesxkjccwgtq9r"& "&_fid_28=Completed"; "javascript:" & "$.get('" & $url & "',function(){" & "location.reload();"& "});" & "void(0);”
  • 18. #EMPOWER2015 Craig McElroy J. Lodge Database Director Resident QuickBase Guru
  • 19. #EMPOWER2015 We utilize our experience and best practices to help companies improve call center processes with a fresh, objective perspective of their organization and voice of their customer. J.Lodge is a US based Quality Assurance Monitoring Provider Established 1999 First American Call Monitoring Company Corporate Headquarters in Fort Myers FL Employ Americans with Disabilities Over 300 agents employed Over 150 applicants available for hire Geographically diverse work-at-home offices 12298 Matterhorn Road, Fort Myers, FL 33913 / www.jlodge.com
  • 20. #EMPOWER2015 1) Form Rule: Hide 2) Form Rule: Unrequire 3) Form Rule: Clear (or Change to Blank) 4) Form Rule: Current Time and Current User 5) Form Rule: Abort Save 6) Formula to check conditions to abort save 12 Form and Formula use cases 7) Formula to check conditions to apply fields 8) Formula for Fiscal Periods 9) Formula for Trending Percentage 10) Formula for Tagging records for Locks 11) Formula for Tagging records for Emails 12) Formulas for Archiving Records
  • 21. #EMPOWER2015 Hide fields that are not needed on your forms based on conditional logic! Form Rule: Hide
  • 22. #EMPOWER2015 Form Rule: Unrequire Require and Unrequire fields to make sure data is captured ONLY when you want it!
  • 23. #EMPOWER2015 Form Rule: Clear Change field to blank when it is hidden so that it does not capture unwanted data.
  • 24. #EMPOWER2015 Form Rule: Current Time and Current User Use Change rules to select user and date. This way they can be edited afterward as needed.
  • 25. #EMPOWER2015 Form Rule: Abort Save Prevent records from being saved to your application when certain conditions occur or do not occur.
  • 26. #EMPOWER2015 Formula to check conditions to abort save Use a List formula in conjunction with If/Case formulas to trigger events which abort the saving of conflicts.
  • 27. #EMPOWER2015 Formula to check conditions to apply fields Use a Case formula to cause a checkbox to be true or false, which determines when fields are applicable.
  • 28. #EMPOWER2015 Formula for Fiscal Periods Format custom date ranges to sort alphanumerically, while also being clear on the range of dates included.
  • 29. #EMPOWER2015 Formula for Trending Percentage Use a Case formula to trend percentage of occurrences, excluding results which are not applicable.
  • 30. #EMPOWER2015 Formula for Tagging records for Locks Use a formula to select records which can or cannot be modified by certain user roles.
  • 31. #EMPOWER2015 Formula for Tagging records for Emails Use a Case formula to show records in a report only on the days in which you want the report to be emailed.
  • 32. #EMPOWER2015 Formulas for Archiving Records Convert your records into text strings to store in another table where formula fields extract the original record’s results.
  • 33. #EMPOWER2015 Formulas for Archiving Records Case and Mid formulas are used to convert text string characters into original results.
  • 34. #EMPOWER2015 Application designed to capture Evaluations. Entire application designed in less than 5 hours. Sample Application