I have the following code which, when executed, asks me for the parameter value Node:
If Forms![Volume Input]!IntersectionType.Value = "Traditional" Then
DoCmd.OpenReport "Traditional", acViewPreview, , "[Node]=Forms![Volume Input]!Node"
I want the code to open the current forms report only. I dont want the report to print out all records because each record will have a different report type (intersectionType.value)
Any advice on what I am doing wrong???