Apptio for All

Apptio for All

A place for Apptio product users to learn, connect, share and grow together.

 View Only
  • 1.  Capital Letter Function

    Posted Fri March 04, 2022 06:08 AM
    Hello Everyone,

    Is there a function that allows me to capitalize the first letter of each element within a column? I'll give you an example: inside a column I have:

    computer
    digital platform
    Product lines

    I would:

    Computer
    Digital Platform
    Product Lines

    Something that automates the initials of each word with a major letter if not present. I need it for the purposes of Lookup because is case-sensitive.

    Thank You



    #ApptioforAll


  • 2.  RE: Capital Letter Function

    Posted Fri March 04, 2022 08:24 AM
    CapFirstLetter() should work for you.


  • 3.  RE: Capital Letter Function

    Posted Mon March 07, 2022 01:47 AM
    Edited by Guillermo Cuadrado Tue November 05, 2024 06:36 PM
    I wasn't aware of the CapFirstLetter() function 😮😮😮😮. Thanks, @James Funk & @Jenny Franklin!​​

    ------------------------------
    Regards, Guillermo
    ------------------------------



  • 4.  RE: Capital Letter Function

    Posted Fri March 04, 2022 09:44 AM
    Edited by System Admin Tue November 05, 2024 06:03 PM

    James beat me to it 😋

    https://help.apptio.com/en-us/studio/formulas-and-functions/functions/capfirstletter.htm?Highlight=capitalize%20first%20letter




  • 5.  RE: Capital Letter Function

    Posted Sun March 06, 2022 10:29 PM
    @Alessandro Citrigno
    You also have the option of making the Lookup Formula case-insensitive.

    Syntax
    Lookup(source_column,lookup_table,matching_column,replacement_column[,leave_original_value][,replace_nulls][,ignore_case])

    We often don't specify the last 3 optional arguments of the lookup formula, and they default to false. That's the reason Lookup is case-sensitive by default. However, when ignore_case is set to True, it makes the match value case-insensitive.

    ------------------------------
    JJ Sharma
    Sr. TBM Practice Manager
    KPMG Australia
    ------------------------------



  • 6.  RE: Capital Letter Function

    Posted Mon March 07, 2022 01:48 AM
    Thanks, @Jaitabh Jewel Sharma! I was vaguely aware of the ignore_case option, but have never used it. I'll try to keep it in mind 😏😏😏​

    ------------------------------
    Regards, Guillermo
    ------------------------------



  • 7.  RE: Capital Letter Function

    Posted Tue March 08, 2022 08:59 AM
    Proper()
    CapFirstLetter()

    should work!