Showing posts with label SharePoint Formulas. Show all posts
Showing posts with label SharePoint Formulas. Show all posts

Wednesday, January 31, 2024

Top 4 Average Formulas in SharePoint

The following are the top four average formulas in SharePoint:

  1. Average of two columns: To calculate the average of two columns, use the following formula: =[Column1]+[Column2])/2.
  2. Average of multiple columns: To calculate the average of multiple columns, use the following formula: =AVERAGE([Column1], [Column2], [Column3]).
  3. Average of selected items: To calculate the average of selected items in a choice column, use the following formula: =AVERAGE([Choices]).
  4. Average of a column with errors: To calculate the average of a column with errors, use the following formula: =IF(ISERROR([Column1]/[Column2]), "-", [Column1]/[Column2]).

Monday, January 15, 2024

3 Commonly Utilized SharePoint Formulas

The following are three commonly used SharePoint formulas:

  1. IF formula: This formula is utilized to check whether a condition is met or not. It returns one value if the condition is true and another value if the condition is false. Example: =IF([Column1]>[Column2], "Yes", "No")
  2. SUM formula: This formula is utilized to add up the values in a column. Example: =SUM([Column1], [Column2], [Column3])
  3. DATEDIF formula: This formula is utilized to calculate the difference between two dates in days, months, or years. Example: =DATEDIF([Column1], [Column2], "d").

Tuesday, December 19, 2023

3 Commonly Utilized SharePoint Formulas

The following are three commonly used SharePoint formulas:

  1. IF formula: This formula is utilized to check whether a condition is met or not. It returns one value if the condition is true and another value if the condition is false. Example: =IF([Column1]>[Column2], "Yes", "No")
  2. SUM formula: This formula is utilized to add up the values in a column. Example: =SUM([Column1], [Column2])
  3. DATEDIF formula: This formula is utilized to calculate the difference between two dates in days, months, or years. Example: =DATEDIF([Column1], [Column2], "d")