Hi I have a table like this:
tblMembers
ID Credit Is_Member
--- --- ---
1 45 True
2 20 False
3 25 True
4 -10 True
5 -5 False
6 13 True
How can I create a view showing the record with the (Minimum Positive) value of Credit and Is_Member="True"?
Thanks!