Search notes:

Power Query M formula language standard library: Table.TransformColumnNames

The following Power Query program uppercases a table's column names.
let
   tab = #table(
    { "id", "grp", "val a", "val b"},
    {
     {  1 , "x"  , "ABC"  ,    1.3 },
     {  2 , "y"  , "DEF"  ,    4.0 },
     {  3 , "z"  , "FGH"  ,    2.7 }
   }),
   tab_ = Table.TransformColumnNames(tab, each Text.Upper(_))
in
   tab_

See also

The Power Query standard library and its function Table.RenameColumns

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/Microsof...', 1758209511, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/Microsoft/Power-Query/M-formula/standard-library/Table/TransformColumnNames(47): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78