=VLOOKUP(A2, $E$3:$F$10, 2, FALSE) This formula looks up the value in cell A2 in the range E3:F10 and returns the corresponding value from the second column.
=CONCATENATE(A1, " - ", B1) This formula concatenates the values in cells A1 and B1 with a hyphen in between.
Want to Discuss your SEO Strategies for Your Business?
Talk to Our Uvisible Experts NOW!
=FLATTEN(A1:C10) Assuming A1:C10 contains data, this formula compresses all the ranges into a single colum
=LOWER(A1) Converts the text in cell A1 to lowercase.
=COUNTIF(B2:B20, ">10") Counts the number of cells in the range B2:B20 that have values greater than 10.
=SUMIF(A1:A100, "Category A", B1:B100) Sums the values in the range B1:B100 where the corresponding value in A1:A100 is "Category A".
=GOOGLETRANSLATE(A1, "auto", "es") Translates the text in cell A1 from the detected language to Spanish.
=SPLIT(A1, ",") Splits the text in cell A1 into separate columns based on commas.
=LEN(A1) Counts the number of characters in cell A1.
=REGEXREPLACE(A1, "\d{2}/\d{2}/\d{4}", "MM/DD/YYYY") Replaces date formats in cell A1 with "MM/DD/YYYY".