I am not trying to do anything terribly difficult here- I just want to reference information in a table, but not in the details field- here is what I am using for a formula:
if {LabTestDetail.TestName}='FISH RESULT'
then {LabTestDetail.RsltTechComment}
//else ''
My table is really simple- I dont need to repeat the data over and over, just a one time report from a table. Below is my table.
RecNum Accession SortOrder TestClass TestName RsltFlag Result
1 173958 900 Undefined Class FISH RESULT N NORMAL
1 173958 901 Undefined Class PHOTOMICROGRAPH_FISH N YES
1 173958 902 Undefined Class FISH_ADDCOMMENT N YES
1 173958 910 Undefined Class FISH_VOLUME N YES
1 173958 911 Undefined Class FISH_COLLECTION_FLUID N YES
1 173958 918 Undefined Class FISH_SIGNATURE_TECH N TEST
1 173958 919 Undefined Class FISH_SIGNATURE_DR N TEST
1 173958 921 Undefined Class FISH_OLDRESULT_1 N YES
1 173958 922 Undefined Class FISH_OLDACCESSION_1 N YES
1 173958 950 Undefined Class FISH_OLDRESULT_4 N YES
There is not much more too it. This works as long at it is the first result: FISH NORMAL and its comment. After that it doesnt work. I assume this is because the data is not looping like it does in the details field. How do I get it so I can put down the data? What else do I need?
if {LabTestDetail.TestName}='FISH RESULT'
then {LabTestDetail.RsltTechComment}
//else ''
My table is really simple- I dont need to repeat the data over and over, just a one time report from a table. Below is my table.
RecNum Accession SortOrder TestClass TestName RsltFlag Result
1 173958 900 Undefined Class FISH RESULT N NORMAL
1 173958 901 Undefined Class PHOTOMICROGRAPH_FISH N YES
1 173958 902 Undefined Class FISH_ADDCOMMENT N YES
1 173958 910 Undefined Class FISH_VOLUME N YES
1 173958 911 Undefined Class FISH_COLLECTION_FLUID N YES
1 173958 918 Undefined Class FISH_SIGNATURE_TECH N TEST
1 173958 919 Undefined Class FISH_SIGNATURE_DR N TEST
1 173958 921 Undefined Class FISH_OLDRESULT_1 N YES
1 173958 922 Undefined Class FISH_OLDACCESSION_1 N YES
1 173958 950 Undefined Class FISH_OLDRESULT_4 N YES
There is not much more too it. This works as long at it is the first result: FISH NORMAL and its comment. After that it doesnt work. I assume this is because the data is not looping like it does in the details field. How do I get it so I can put down the data? What else do I need?