Hi all,
I have created a form, depend upon payment status selection ( drop down have "paid", "not paid" , "insurance") I need separate count. please check the attached image for your reference. Please Help me...................
Thank in Advance
Hi all,
I have created a form, depend upon payment status selection ( drop down have "paid", "not paid" , "insurance") I need separate count. please check the attached image for your reference. Please Help me...................
Thank in Advance
please help me..
Try: =Sum(IIf([Payment Status]="Paid",1,0))
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
Private Sub Text186_Click()
Text186 = Sum(IIf([Payment Status] = "Paid", 1, 0))
End Sub
But getting
Complile error:
Sub or Function not denfined
......... not working
I meant for it to be in the ControlSource property of textbox.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
not getting result............instead of result it's showing "#Error" in that paid column
Works for me. If you want to provide db for analysis, follow instructions at bottom of my post.
How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.
You rock..........It's working fine........Thank you so much