If this is due to the scenario @Aram describes, you can find out the property id by using this expression
(name of it, id of it, name of site of source analysis of it | "none", name of source analysis of it | "none") of bes properties whose (name of it = "DNS Name")
As DNS Name is a built in global property, its id should start with a long number which is the database id for your deployment, in my case thats 2299794319, and it will not have an analysis or site name.

Then, using this expression of the type mentioned by @Aram , you can call the exact property id which should prevent the empty data…unless the scenario @ageorgiev refers to is your root cause. Aside from a few minor edits, I used the Excel Connector to create this relevance.
( item 0 of it as string & "," &
item 1 of it as string & "," &
item 2 of it as string & "," &
item 3 of it as string )
of (
(if (exists result (item 0 of it, item 1 of it) and
exists values of result (item 0 of it, item 1 of it) )
then (concatenation "%0A" of values of result (item 0 of it, item 1 of it))
else ("<none>")),
(if (exists result (item 0 of it, item 2 of it) and
exists values of result (item 0 of it, item 2 of it) )
then (concatenation "%0A" of values of result (item 0 of it, item 2 of it))
else ("<none>")),
(if (exists result (item 0 of it, item 3 of it) and
exists values of result (item 0 of it, item 3 of it) )
then (concatenation "%0A" of values of result (item 0 of it, item 3 of it))
else ("<none>")),
(if (exists result (item 0 of it, item 4 of it) and
exists values of result (item 0 of it, item 4 of it) )
then (concatenation "%0A" of values of result (item 0 of it, item 4 of it))
else ("<none>")))
of (
elements of intersection of (
(sets of items 0
of (computers of it, values whose (it as time > (now - 1 * hour)) of it)
of results of bes property "Last Report Time")),
bes property whose (name of it = "Computer Name" and
(item 0 of it = 2299794319 and item 1 of it = 4 and item 2 of it = 1) of id of it),
bes property whose (name of it = "RAM" and
(item 0 of it = 2299794319 and item 1 of it = 34 and item 2 of it = 1) of id of it),
bes property "Device Type",
bes property whose (name of it = "DNS Name" and
(item 0 of it = 2299794319 and item 1 of it = 15 and item 2 of it = 1) of id of it))