Access Report #Error Text Message -
i'm attempting build summary report in access custom statistics based on daily query. however, i'm running difficulties. when use report built off said query, same exact number regardless of formula.
i'm building formula count text values in field or count responses in field formula return 18 value (the total number of records) when know false formula. alternatively, create blank report , no matter either receive #error or #name? value in textbox. have checked , name control not name in formula or anywhere else - rename text0 or demo.
the formula i've been attempting use
=count(iif([daily_numbers_query].[signed_card] not null,1,0));
where daily_numbers_query refers query , signed_card refers field want examine query. want tell number of records signed_card has value , not null.
any extremely appreciated.
you said query in report's recordsource, need use correct false return. also, don't need query name prefix.
=count(iif([signed_card] not null, 1, null))
or
=count(iif(not isnull([signed_card]), 1, null))
or
=sum(iif([signed_card] not null, 1, 0))
Comments
Post a Comment