Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Please find attached file
Try this:
=Count({<[RM RoomType] = {'WRKST', 'OFFICE'}, [EM EmployeeName] = {"=Len(Trim([EM EmployeeName])) > 0"}>} [EM EmployeeName]) + Count({<[RM RoomType] -= {'WRKST', 'OFFICE'}>} [RM RoomType])
Is this the same query as:
If so, please try to keep your replies or additional comments to the same thread as it makes it easier to follow.
Thanks.
Try this:
=Count({<[RM RoomType] = {'WRKST', 'OFFICE'}, [EM EmployeeName] = {"=Len(Trim([EM EmployeeName])) > 0"}>} [EM EmployeeName]) + Count({<[RM RoomType] -= {'WRKST', 'OFFICE'}>} [RM RoomType])
=Count(
{
<[RM RoomType] = {'WRKST', 'OFFICE'}, [EM EmployeeName] = {"=Len(Trim([EM EmployeeName])) > 0"}>
+
<[RM RoomType] -= {'WRKST', 'OFFICE'}>
}
[RM RoomType])
Thank you.This did magic
Thank you.Yopur logic was very helpful.