-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogs.quickbase
More file actions
26 lines (20 loc) · 938 Bytes
/
logs.quickbase
File metadata and controls
26 lines (20 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Extracting data from a log field utilizing timestamps
// Code is correct but there seems to be a bug in the formula language itself causing syntax highlighting to break on the "]" character
// last entry timestamp
Part(Right([Status Change Log], "["),1," ") & " " &
Part(Right([Status Change Log], "["),2," ") & " " &
Part(Right([Status Change Log], "["),3," ")
// last entry author
Part(Right([Status Change Log], "["),4," ") & " " &
Left(Part(Right([Status Change Log], "["),5," "),"]")
// last entry
Trim(Right([Status Change Log], "]"))
// first entry timestamp
Right(Part(Left([Status Change Log], "]"),1," "),"[") & " " &
Part(Left([Status Change Log], "]"),2," ") & " " &
Trim(Part(Left([Status Change Log], "]"),3," "))
// first entry author
Part(Left([Status Change Log], "]"),4," ") & " " &
Right(Part(Left([Status Change Log], "]"),5," "),"[]")
// first entry
Right(Left(NotLeft([Status Change Log], "["),"["), "]")