I think this tool will probably do what "I think" I'm after:
Equilab-Omaha https://www.pokerstrategy.com/l/equilab-omaha/download/I might be over-thinking things.
So far, I'm using DoubleSuited and A suited to specify my hand-ranges and work out where they fit pre-flop (how much to raise, call, 3bet, etc).
ie
//[[ UserPremiumAA ]]
// AAKK AAKJ AAJT AAQQ AAJJ AATT AA99 AA97
when (DoubleSuited) and (hand = A Suited AKK or hand = A Suited AKJ or hand = A Suited AJT or hand = A Suited AQQ or hand = A Suited AJJ or hand = A Suited ATT or hand = A Suited A99 or hand = A Suited A97) UserPremiumAA
And I do have some combinations of all suits that I got from the forum (and probably why I'm thinking I may not of covered everything) but maybe I don't need to have hands like this afterall
// KKJT
when (hand = KcJcKdTd or hand = KcJcKhTh or hand = KcJcKsTs or hand = KdJdKcTc or hand = KdJdKhTh or hand = KdJdKsTs or hand = KhJhKcTc or hand = KhJhKdTd or hand = KhJhKsTs or hand = KsJsKcTc or hand = KsJsKdTd or hand = KsJsKhTh) userKKJT
// KKJ9
when (hand = KcJcKd9d or hand = KcJcKh9h or hand = KcJcKs9s or hand = KdJdKc9c or hand = KdJdKh9h or hand = KdJdKs9s or hand = KhJhKc9c or hand = KhJhKd9d or hand = KhJhKs9s or hand = KsJsKc9c or hand = KsJsKd9d or hand = KsJsKh9h) userKKJ9
Maybe DoubleSuited and A suited covers everything, but in my mind, I'm thinking it doesn't, and also because I see that it's being coded as individual hands in other peoples profiles.
I was thinking of hands such as
Suited Broadway Cards AKQJT like AKsuited AQsuited AJsuited ATsuited.. KQsuited KJ suited KT suited.. and then every combo of:
1.] Suited Connectors AK, KQ, QJ, JT, T9, 98, 87, 76, 65, 54
2.] One Gappers AQ, KJ, QT, J9, T8, 97, 86, 75, 64, 53, 42, AQ, KJ, QT, J9, T8, 97, 86, 75, 64
3.] Two Gappers AJ, KT, Q9, J8, T7, 96, 85, 74, 63
If there's a way to code "AK suited AQ suited and AJ suited" etc without having to manually type in every combination of suit, then that's probably all I'm looking for.
I could just be having a newbie brain-fart moment where I'm confused by how it works and making things more complicated than it needs to be.