Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
So I am not certain if I went about this the right way but below are the formulas that drive 3 calculated columns based on the specified criteria. Now what I need is to collapse the 3 columns into 1 column called "Term Status". Can I do that and if so, how?
Term Veteran = IF('WW Registrations'[Term Military or Civilian]= "Civilian" && ('WW Registrations'[Term - Prior Branch of Service]="Yes"),"Veteran")
Term Civilian = IF('WW Registrations'[Term Military or Civilian]= "Civilian" && ('WW Registrations'[Term - Prior Branch of Service]="No" || 'WW Registrations'[Term - Prior Branch of Service]=""),"Civilian")
Term Military = IF('WW Registrations'[Term Military or Civilian]= "Miltiary" && ('WW Registrations'[Term - Prior Branch of Service]="Yes" || 'WW Registrations'[Term - Prior Branch of Service]=""),"Military")
Each individual gives a column with the correct information but I need [Term Veteran] + [Term Civilian] + [Term Military] with this information in one column called [Term Status]
Solved! Go to Solution.
The solution is actually just the following:
Term Status = ('WW Registrations'[Term Civilian] & ('WW Registrations'[Term Veteran] & ('WW Registrations'[Term Military])))
The solution is actually just the following:
Term Status = ('WW Registrations'[Term Civilian] & ('WW Registrations'[Term Veteran] & ('WW Registrations'[Term Military])))
Have you try the
CONCATENATE([Term Veteran] + [Term Civilian] + [Term Military])
Yes, it does not work.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
84 | |
76 | |
75 | |
43 | |
36 |
User | Count |
---|---|
109 | |
56 | |
52 | |
48 | |
43 |