Hi,
I'm going to assume here you're trying to allow either TCP or UDP connections, but not both.
In the case you'd like to allow TCP connections on any ports, without using an object-group you can do:
access-list acl-inbound extended permit tcp any any
In the above example, you would be allowing TCP connections from any source host to any destination hosts, regardless of what port they're coming from. Of course, source/destination can be replaced by IPs and tcp can be substitued with udp.