Sorry for the delay, I was at work. What I realized I need is =Max(Fields!paymentcode) Thank you to everyone who responded, I'll try to be clearer next time.
boukaka
Posts
-
Select Top 1 -
Select Top 1I'm using Visual Studio 2003 and the data is coming from a SQL 2000 table that I am connected to and am pulling data from via a Query Select statement.
-
Select Top 1I'm creating a report in Microsoft Reporting tool which uses VB.NET (which I don't know very well) I'm trying to select the Top 1 payment type but I can't get the syntax to work. I have =Top 1(Fields!paymenttype.Value) and it's not working, what would the correct expression be in VB.NET to pull the Top record? Thank you for any help!:confused:
-
The case of the disappearing radio buttons - I wish:confused:Hi there, I am BRAND SPANKING NEW to ASP and I have a site which shows 2 text boxes dynamically depending on a number that is entered into the "NumAdults" box. So if you enter "2", you get: text box, text box, text box, text box What I'm trying to do, is add a radio button to the mix. For example, if you entered "2", I want it to show text box, text box, radio button, text box text box, radio button. The code for the text boxes is working fine but the radio buttons won't work! The radio buttons are elements named rbmember1 through rbmember10. The code - (I've tried to add the radio buttons - please don't laugh) so far is as follows: - Please, can anyone see what I'm doing wrong here? { dlResidence.Value = pol.Pol.Residence; dlDestination.Value = pol.Pol.Destination; rbCoverageSingle.Checked = !pol.Pol.IsFamily; rbCoverageFamily.Checked = pol.Pol.IsFamily; txtNumAdults.Value = pol.Insureds.Count.ToString(); hdnSelectedPlan.Value = pol.Pol.PlanCode; for(int i=0;i