Outsmarting SharePoint using Calculated Columns Jonathan Weaver #SPSKC2015.

Slides:



Advertisements
Similar presentations
SQL – Lesson II Grade 12.
Advertisements

Advanced SQL Topics Edward Wu.
Practical SQL performance tuning, for developers and DBAs Kurt Struyf Competence Partners.
SharePoint Forms All you ever wanted to know about forms but were afraid to ask.
© Abdou Illia MIS Spring 2014
ZEIT2301 Design of Information Systems Multi-Table Queries in SQL School of Engineering and Information Technology Dr Kathryn Merrick.
Major Sponsors Minor Sponsors. Overview What is a Search Driven Site?
Power BI Rafal Lukawiecki Strategic Consultant Project Botticelli Ltd
Intermediate Formulas & Functions Instructor: Rachel Baltus.
Copyright © 2014 Pearson Education, Inc. Publishing as Prentice Hall. 1 by Mary Anne Poatsy, Keith Mulbery, Lynn Hogan, Amy Rutledge, Cyndi Krebs, Eric.
Chapter 11 Group Functions
Tutorial 7: Using Advanced Functions and Conditional Formatting
Implementing Business Analytics with MDX Chris Webb London September 29th.
Microsoft Office System UK Developers Conference Radisson Edwardian, Heathrow 29 th & 30 th June 2005.
Tutorial 8: Working with Advanced Functions
Last Week: Excel 101 with Prof. Bliley: Workbooks, worksheets, rows, columns Cells: Text, Value, Formulas Formulas, Ranges OK? Survive Alive? Questions?
With Microsoft Excel 2007 Comprehensive 1e© 2008 Pearson Prentice Hall1 PowerPoint Presentation to Accompany GO! with Microsoft ® Excel 2007 Comprehensive.
Excel chapter 2.
Categorization, views, search and retrieval Becky Bertram Covenant Technology Partners.
REDCap at UVM Presented by Diantha Howard, CCTS Biomedical Informatics September 2011.
DAY 5: MICROSOFT EXCEL – CHAPTER 2 Aliya Farheen January 27,2015.
It’s the Power Of Us! ® Network | Learn | Collaborate | Share How to Leverage SharePoint Connectors and the GP Light User By Jason McKinney,
Capita Consultancy Services & Web Reporting Rupert Ireland Applications Consultant.
Unit 23 Database and Spreadsheets Prepared by :Nahed Al-Salah.
Thank you #SPSTC sponsors! Who Am I? Haystax Technology.
Ashwani Roy Understanding Graphical Execution Plans Level 200.
O FFICE M ANAGEMENT T OOL - II B BA -V I TH. Abdus Salam2 Week-7 Introduction to Query Introduction to Query Querying from Multiple Tables Querying from.
1 Project Management Example Solving Sudoku 2 What is Sudoku?  Sudoku is a game with 9 columns and 9 rows and 9 “boxes” composed of a 3 x 3 Grid  Numbers.
The 20-Minute Tabular Model Bill Anton Prime Data Intelligence.
Access Chapter 5-Table Tricks, Advanced Queries and Custom Forms.
Virtual SharePoint Summit 2010 hosted by Rackspace Manage Your Team with SharePoint Jennifer Mason, Senior Consultant SharePoint 911 Virtual SharePoint.
OM. Brad Gall Senior Consultant
Microsoft Office 2013 ®® Calculating Data with Formulas and Functions.
31 May | SharePoint Saturday Calgary – 31 MAY 2014 About Me.
CSC 230 (Blum)1 Getting a List of Colors. CSC 230 (Blum)2 Imagine a program in which you want a list of colors in a ComboBox.
SharePoint Saturday Chicago Suburbs 2 Speaker Feedback: SPSCSM.COM.
DAY 5: EXCEL CHAPTER 2 Sravanthi Lakkimsetty Feb 1, 2016.
Who Am I? Haystax Technology Contact Info Todays Agenda.
CTS130 Spreadsheet Lesson 6 Working with Math & Trig, Statistical, and Date & Time Functions.
Automating Power BI Creations Angel Abundez VP Business Intelligence, DesignMind.
DeFacto Performance Management Overview. Agenda Introductions/Background Anthony D’Anna, COO – deFacto.
OV Copyright © 2011 Element K Content LLC. All rights reserved. Calculating Data with Advanced Formulas  Apply Cell and Range Names  Calculate.
$200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200 $400 $600 $800 $1000 $200.
14.0 Math Review 14.1 Using a Calculator Calculator
<Enter course name here>
6/19/2018 © 2014 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered trademarks and/or trademarks.
Jonathan Weaver SharePoint Saturday Los Angeles 2017
25 Math Review Part 1 Using a Calculator
Cross UG Summit EMEA /6/2018 7:24 PM
Less known component in SSIS and cool features of Power BI
www 123 hp com setup hp com setup :
www 123 hp com setup hp com setup :
www 123 hp com setup hp com setup :
www 123 hp com setup hp com setup :
www 123 hp com setup hp com setup :
SharePoint Designer Custom Workflows: Making the Approval Process Dynamic Jonathan Weaver June 15, 2018 #SPSHNL.
Jonathan Weaver SharePoint Saturday St Louis 2017
TechEd /24/2018 6:19 AM © 2013 Microsoft Corporation. All rights reserved. Microsoft, Windows, and other product names are or may be registered.
Jonathan Weaver SharePoint Saturday
برنامج التميز في خدمة عملاء السادة موظفي مكاتب المساعدة القانونية
Get Out of the Box! Introduction to the out-of-the-box forms in SharePoint 07/26/2017.
Please thank our sponsors!
Automation doesn’t fix process problems
Building your First Cube with SSAS
Tracking Usage of Analysis Services with SharePoint
Excel Formulas Made Easy
HOW TO COPY AND PASTE THE SNAP CUBES.
HOW TO COPY AND PASTE THE SNAP CUBES.
HOW TO COPY AND PASTE THE SNAP CUBES.
HOW TO COPY AND PASTE THE SNAP CUBES.
Presentation transcript:

Outsmarting SharePoint using Calculated Columns Jonathan Weaver #SPSKC2015

Jonathan Consultant – KC Tech Group, LLC ( 15+ years in IT industry DEV, BA, QA, SharePoint Into logic puzzles SuDoKu, Rubik’s Cubes, Word Search If/Then queries Workflows

Agenda What is a Calculated Column? Limitations Overcoming Limitations Let’s go on a cruise! Basic Calculations If Statements Nested If Statements Today & Me Demo Questions Resources

What is a Calculated Column? Calculate based on other columns Display values based on logic statements Similar to functions in Excel or SQL

Limitations Maximum of 7 Nested Ifs Cannot use Lookup columns Entry box is very small

Overcoming Limitations Smarter Nesting / Concatenating Hidden columns Calculations Copy Lookups Workflows Notepad

Let’s go on a cruise!

Basic Calculations Creating a “Total” column Basic math =[Col1]+5 =[Col2]/[Col1] Compare =[Col1]>[Col2] And/Or/Not =AND([Column1]>[Column2], [Column1]<[Column3]) =OR([Column1]>[Column2], [Column1]<[Column3]) =NOT([Column1]+[Column2]=24)

If Statements Conditional Calculations =IF(Condition, Then, Else) =IF([Column1]<=[Column2], "OK", "Not OK") =IF([Column1]=15, "OK", "Not OK") =IF(AND([Column1]>[Column2], [Column1]<[Column3]), "OK", "Not OK") =IF(OR([Column1]>[Column2], [Column1]<[Column3]), "OK", "Not OK")

Nested If Statements Nest inside Then or Else sections =IF(Condition, IF(Condition, Then, Else), Else) =IF(Condition, Then, IF(Condition, Then, Else)) ALWAYS COUNT YOUR BRACKETS!!!!!! Demo

What if each color needs a different code?

Nested If Statements

Today & Me [Today] – Inserts Today’s date [Me] – Inserts the signed in user’s name

Today & Me [Today] – Inserts Today’s date [Me] – Inserts the signed in user’s name

DEMO If I haven’t rambled on past our time limit…

Questions?

Resources My favorite page for Calculation help us/library/office/bb862071(v=office.14).aspx Massive Nested If of-if-statements-in-a-calculated-column/

Thank you SPSKC15 sponsors!