I want to write a expression for a textbox that it will only show if the page count is greater than one then it will be only showed otherwise we will not show.So if the report is one page that textbox will not show but if the report is generated by many pages then it will be showed
=IIf((Globals!TotalPages > 1),True,False) i tried this way but not working