JavaScript required
We’re sorry, but Coda doesn’t work properly without JavaScript enabled.
Skip to content
Gallery
Power Apps UI Cooker
Introduction
About Author
Release Notes
Custom Functions
Custom Components
More
Share
Explore
Custom Functions
Text Functions
MyCondy
Last edited 80 days ago by MyCondy
Text inside "<>" character should be replaced by your real data.
Show User Initials
Left(User().FullName, 1) & Mid(User().FullName,Find(" ", User().FullName) + 1,1)
Find the last Char
Mid(Last(<TABLE>).Title,Len(Last(<TABLE>).Title) -1)
Show last 6 months sum of hours
LastN(ForAll(
SortByColumns(Distinct(AddColumns(Filter(<TABLE>,Year = Year(Today())),"_months",Month(<TABLE COLUMN>)),_months),"Value",SortOrder.Ascending),
{_months: Value,
totalHours: Sum(Filter(<TABLE>, Month(<TABLE COLUMN>) = Value),Hours)
}
),6)
Separate selected records by semicolon
Concat(Filter(<GALLERY>.AllItems,sel_emp_check.Value = true),<COLUMN NAME>,";"))
← Custom Functions
Date Functions →
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
Ctrl
P
) instead.