Join two querys

(imported topic written by var91)

Hi,

How do I join two querys to get the result below?

q: values “Workplacestarter_HideGui” of keys “Software\Wuestenrot” of keys

of key “HKEY_USERS” of registry

A: 0

A: 1

T: 1.861 ms

q: if exists true whose (if true then exists logged on user else false)

then names of logged on users else if exists current user then name of

current user else “”

A: fdtexp1

A: var

T: 7.084 ms

I want to get following result:

fdtexp1 | 1

var | 0

Is this possible?

Thanks from Austria

Andi

(imported comment written by NoahSalzman)

Any time you have two expressions which return strings you can join them with the concatenation operator (&). It also helps to use parentheses to keep them visually and logically separated.

() & " | " & ()

If you don’t need the bar separating then you can just do:

(), ()