ADVCF

=ADVCF(a,clm,crm,cla,cra)

a
array, regular, dynamic, table
clm
columns "multiplication" indexes for AND logic conditions(multiplication), 2, or {2,3} or {3,3} if we apply more conditions to the same column
crm
criteria "multiplication", text strings or numeric arguments for AND logic conditions, {">3","quad"}
cla
columns "adding" indexes for OR logic conditions(adding), 2, or {2,3} or {3,3} if we apply more conditions to the same column
cra
criteria "adding", text strings or numeric arguments for OR logic conditions, {">3","quad"}

ADVanced Conditional Formatting , for arrays

Xlambda

Well-known Member
Joined
Mar 8, 2021
Messages
860
Office Version
  1. 365
Platform
  1. Windows
ADVCF ADVanced Conditional Formatting , for arrays, calls T_AFA , T_AFM. My approach on CF.
Having already ADVFLT , ADVCF is extremely easy, Same arguments, same functionality, hardcoding any conditions we want, bolean logic (and,or), capable. If filter syntax is FILTER(a,include), ADVCF is the include argument. Check ADVFLT post for more details. Other function on minisheet ACOUNTIFS
Task 1. For the given table highlight the records btwn 2 dates with sales over 50 units, for regions either East or West or for brand Apple whatever region. Out of this results , highlight the sales that took place on weekends. The formula we need:
Excel Formula:
=LAMBDA(a,clm,crm,cla,cra,
    LET(tm,IF(SUM(clm)=0,1,T_AFM(a,clm,crm,1)),ta,IF(SUM(cla)=0,1,T_AFA(a,cla,cra,0)),
       IF(tm*ta,1,0)
    )
)
LAMBDA 10.0.xlsx
ABCDEFGHIJKLMNOPQRSTUVWXYZAA
1sample table=ADVCF(S,{1,1,10},{">=1-08-20","<1-05-21",">=50"},{3,8,8},{"Apple","East","West"})
2DateProdBrandTypeCostPrice/uShopRegionManageruSoldTCostRevNetRev=O3#+ACOUNTIFS(TEXT(S[Date],"ddd"),{"Sat";"Sun"})
309-07-20Prod 3Samsungphone230240Shop CEastJohn S84193202016084000
414-07-20Prod 1Appletablet280350Shop FSouthSteve J852380029750595000CF formulas
523-07-20Prod 6Samsungtablet170185Shop CEastJohn S111870203516500AaBbCc=$O3
630-07-20Prod 8Applelaptop420510Shop DWestMike B773234039270693000AaBbCc=$Q3=2
703-08-20Prod 4Applephone350370Shop DWestMike B682380025160136011
808-08-20Prod 2HPlaptop520620Shop CEastJohn S341768021080340001AaBbCcwhen both condition meet
922-08-20Prod 8Applelaptop420510Shop ENorthBill T411722020910369001
1002-09-20Prod 7Samsunglaptop650780Shop AEastJohn S9058500702001170011
1113-09-20Prod 4Applephone350370Shop ENorthBill T863010031820172012other formulas on minisheet
1215-09-20Prod 3Samsungphone230240Shop BWestDavid M265980624026000ACOUNTIFS
1321-10-20Prod 1Appletablet280350Shop CEastJohn S772156026950539011
1428-10-20Prod 8Applelaptop420510Shop CEastJohn S783276039780702011Obs:
1529-10-20Prod 1Appletablet280350Shop BWestDavid M802240028000560011ACOUNIFS can handle array calculation in its arguments
1614-11-20Prod 5HPdesktop870990Shop DWestMike B484176047520576001
1718-11-20Prod 7Samsunglaptop650780Shop DWestMike B724680056160936011
1825-11-20Prod 3Samsungphone230240Shop AEastJohn S71163301704071011
1917-12-20Prod 5HPdesktop870990Shop FSouthSteve J675829066330804000
2028-12-20Prod 5HPdesktop870990Shop ENorthBill T1087009900120000
2103-01-21Prod 4Applephone350370Shop BWestDavid M682380025160136012
2214-01-21Prod 3Samsungphone230240Shop BWestDavid M52119601248052011
2320-01-21Prod 1Appletablet280350Shop BWestDavid M601680021000420011
2430-01-21Prod 5HPdesktop870990Shop BWestDavid M8573950841501020012
2518-02-21Prod 4Applephone350370Shop AEastJohn S46161001702092000
2620-02-21Prod 2HPlaptop520620Shop AEastJohn S351820021700350001
2728-02-21Prod 5HPdesktop870990Shop AEastJohn S716177070290852012
2801-03-21Prod 6Samsungtablet170185Shop ENorthBill T65110501202597500
2904-03-21Prod 4Applephone350370Shop ENorthBill T42147001554084000
3006-03-21Prod 3Samsungphone230240Shop ENorthBill T81186301944081001
3117-03-21Prod 4Applephone350370Shop BWestDavid M47164501739094000
3220-03-21Prod 5HPdesktop870990Shop FSouthSteve J706090069300840001
3322-03-21Prod 3Samsungphone230240Shop DWestMike B143220336014000
3429-03-21Prod 6Samsungtablet170185Shop DWestMike B63107101165594511
3509-04-21Prod 8Applelaptop420510Shop AEastJohn S502100025500450011
3610-04-21Prod 6Samsungtablet170185Shop ENorthBill T315270573546501
3710-04-21Prod 5HPdesktop870990Shop AEastJohn S474089046530564001
3810-04-21Prod 7Samsunglaptop650780Shop FSouthSteve J1278009360156001
3912-04-21Prod 1Appletablet280350Shop AEastJohn S511428017850357011
4024-04-21Prod 3Samsungphone230240Shop FSouthSteve J204600480020001
4128-04-21Prod 3Samsungphone230240Shop ENorthBill T70161001680070000
4202-05-21Prod 8Applelaptop420510Shop BWestDavid M733066037230657001
4304-05-21Prod 3Samsungphone230240Shop FSouthSteve J194370456019000
4406-05-21Prod 5HPdesktop870990Shop DWestMike B282436027720336000
4510-05-21Prod 3Samsungphone230240Shop AEastJohn S388740912038000
4611-05-21Prod 2HPlaptop520620Shop DWestMike B351820021700350000
4712-05-21Prod 3Samsungphone230240Shop AEastJohn S4398901032043000
4813-05-21Prod 5HPdesktop870990Shop ENorthBill T1087009900120000
4916-05-21Prod 3Samsungphone230240Shop ENorthBill T296670696029001
5012-06-21Prod 2HPlaptop520620Shop FSouthSteve J442288027280440001
5126-06-21Prod 8Applelaptop420510Shop FSouthSteve J502100025500450001
5229-06-21Prod 2HPlaptop520620Shop DWestMike B371924022940370000
53
54additional records-we can harcode any complex conditions we need
5501-09-20Prod 3Samsungphone230300Shop FSouthSteve J1432204200980(as seen in ADVFLT with help of boolean logic)
5601-09-20Prod 3Samsungphone230300Shop DWestMike B8920470267006230-if data is a table all CF behaviour updates
5714-01-21Prod 6Samsungtablet170240Shop ENorthBill T8314110199205810(add additional records to the bottom of the table and everything updates)
5817-07-20Prod 8Applelaptop420510Shop CEastJohn S4318060219303870
5909-04-21Prod 3Samsungphone230300Shop CEastJohn S8018400240005600
6018-11-20Prod 1Appletablet280350Shop BWestDavid M7320440255505110
6116-07-20Prod 8Applelaptop420510Shop AEastJohn S2912180147902610
6213-05-21Prod 1Appletablet280350Shop BWestDavid M8423520294005880
6318-01-21Prod 3Samsungphone230300Shop DWestMike B32736096002240
6423-02-21Prod 7Samsunglaptop650780Shop FSouthSteve J7548750585009750
65
ADVCF post
Cell Formulas
RangeFormula
O1O1=FORMULATEXT(O3)
Q2Q2=FORMULATEXT(Q3)
O3:O52O3=ADVCF(S,{1,1,10},{">=1-08-20","<1-05-21",">=50"},{3,8,8},{"Apple","East","West"})
Q3:Q52Q3=O3#+ACOUNTIFS(TEXT(S[Date],"ddd"),{"Sat";"Sun"})
Dynamic array formulas.
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A3:M52Expression=$O3textNO
A3:M52Expression=$Q3=2textNO
 
Upvote 0
Task 2. For the same array, highlight the pairs Shop/Region records that contribute to the following goals: units sold over 490 units, OR revenue is over 260000 , OR net revenue over 36000.
In other words, we are happy with either of these results. If we sold over 490 units we are happy that we sold a lot of units, no matter tot rev or net rev, and so on.
We need only ASUMIFS (shop/region , shop/region , all 4 last columns with values) and a simple ADVCF with OR criteria for 3 of its columns.
Othe function on minisheet ASUMIFS
LAMBDA 10.0.xlsx
ABCDEFGHIJKLMNOPQRSTUVWXYZAA
1=ASUMIFS(NR[[Shop]:[Region]],NR[[Shop]:[Region]],NR[[uSold]:[NetRev]])
2DateProdBrandTypeCostPrice/uShopRegionManageruSoldTCostRevNetRevuSoldTCostRevNetRev=ADVCF(P3#,,,{1,3,4},{">490",">260000","36000"})
309-07-20Prod 3Samsungphone230240Shop CEastJohn S84193202016084028493190110005168150
414-07-20Prod 1Appletablet280350Shop FSouthSteve J8523800297505950367203640236880332400
523-07-20Prod 6Samsungtablet170185Shop CEastJohn S111870203516528493190110005168150
630-07-20Prod 8Applelaptop420510Shop DWestMike B7732340392706930442220430255485350550CF formula
703-08-20Prod 4Applephone350370Shop DWestMike B6823800251601360442220430255485350550AaBbCc=$T3
808-08-20Prod 2HPlaptop520620Shop CEastJohn S341768021080340028493190110005168150
922-08-20Prod 8Applelaptop420510Shop ENorthBill T4117220209103690465137140149030118900
1002-09-20Prod 7Samsunglaptop650780Shop AEastJohn S90585007020011700542265700305570398701other formulas on minisheet
1113-09-20Prod 4Applephone350370Shop ENorthBill T8630100318201720465137140149030118900ASUMIFS
1215-09-20Prod 3Samsungphone230240Shop BWestDavid M2659806240260491202000231650296501
1321-10-20Prod 1Appletablet280350Shop CEastJohn S772156026950539028493190110005168150Obs. A single cell formula is possible
1428-10-20Prod 8Applelaptop420510Shop CEastJohn S783276039780702028493190110005168150but I left it expanded to visualize the values
1529-10-20Prod 1Appletablet280350Shop BWestDavid M8022400280005600491202000231650296501
1614-11-20Prod 5HPdesktop870990Shop DWestMike B4841760475205760442220430255485350550
1718-11-20Prod 7Samsunglaptop650780Shop DWestMike B7246800561609360442220430255485350550
1825-11-20Prod 3Samsungphone230240Shop AEastJohn S711633017040710542265700305570398701
1917-12-20Prod 5HPdesktop870990Shop FSouthSteve J6758290663308040367203640236880332400
2028-12-20Prod 5HPdesktop870990Shop ENorthBill T10870099001200465137140149030118900
2103-01-21Prod 4Applephone350370Shop BWestDavid M6823800251601360491202000231650296501
2214-01-21Prod 3Samsungphone230240Shop BWestDavid M521196012480520491202000231650296501
2320-01-21Prod 1Appletablet280350Shop BWestDavid M6016800210004200491202000231650296501
2430-01-21Prod 5HPdesktop870990Shop BWestDavid M85739508415010200491202000231650296501
2518-02-21Prod 4Applephone350370Shop AEastJohn S461610017020920542265700305570398701
2620-02-21Prod 2HPlaptop520620Shop AEastJohn S3518200217003500542265700305570398701
2728-02-21Prod 5HPdesktop870990Shop AEastJohn S7161770702908520542265700305570398701
2801-03-21Prod 6Samsungtablet170185Shop ENorthBill T651105012025975465137140149030118900
2904-03-21Prod 4Applephone350370Shop ENorthBill T421470015540840465137140149030118900
3006-03-21Prod 3Samsungphone230240Shop ENorthBill T811863019440810465137140149030118900
3117-03-21Prod 4Applephone350370Shop BWestDavid M471645017390940491202000231650296501
3220-03-21Prod 5HPdesktop870990Shop FSouthSteve J7060900693008400367203640236880332400
3322-03-21Prod 3Samsungphone230240Shop DWestMike B1432203360140442220430255485350550
3429-03-21Prod 6Samsungtablet170185Shop DWestMike B631071011655945442220430255485350550
3509-04-21Prod 8Applelaptop420510Shop AEastJohn S5021000255004500542265700305570398701
3610-04-21Prod 6Samsungtablet170185Shop ENorthBill T3152705735465465137140149030118900
3710-04-21Prod 5HPdesktop870990Shop AEastJohn S4740890465305640542265700305570398701
3810-04-21Prod 7Samsunglaptop650780Shop FSouthSteve J12780093601560367203640236880332400
3912-04-21Prod 1Appletablet280350Shop AEastJohn S5114280178503570542265700305570398701
4024-04-21Prod 3Samsungphone230240Shop FSouthSteve J2046004800200367203640236880332400
4128-04-21Prod 3Samsungphone230240Shop ENorthBill T701610016800700465137140149030118900
4202-05-21Prod 8Applelaptop420510Shop BWestDavid M7330660372306570491202000231650296501
4304-05-21Prod 3Samsungphone230240Shop FSouthSteve J1943704560190367203640236880332400
4406-05-21Prod 5HPdesktop870990Shop DWestMike B2824360277203360442220430255485350550
4510-05-21Prod 3Samsungphone230240Shop AEastJohn S3887409120380542265700305570398701
4611-05-21Prod 2HPlaptop520620Shop DWestMike B3518200217003500442220430255485350550
4712-05-21Prod 3Samsungphone230240Shop AEastJohn S43989010320430542265700305570398701
4813-05-21Prod 5HPdesktop870990Shop ENorthBill T10870099001200465137140149030118900
4916-05-21Prod 3Samsungphone230240Shop ENorthBill T2966706960290465137140149030118900
5012-06-21Prod 2HPlaptop520620Shop FSouthSteve J4422880272804400367203640236880332400
5126-06-21Prod 8Applelaptop420510Shop FSouthSteve J5021000255004500367203640236880332400
5229-06-21Prod 2HPlaptop520620Shop DWestMike B3719240229403700442220430255485350550
53
ADVCF post 2
Cell Formulas
RangeFormula
O1O1=FORMULATEXT(P3)
U2U2=FORMULATEXT(U3)
P3:S52P3=ASUMIFS(NR[[Shop]:[Region]],NR[[Shop]:[Region]],NR[[uSold]:[NetRev]])
U3:U52U3=ADVCF(P3#,,,{1,3,4},{">490",">260000","36000"})
Dynamic array formulas.
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A3:M52Expression=$U3textYES
 
Array/Table "making of". Functions used : ARANDOM , ACLMJOIN , ACLMSPLIT
LAMBDA 10.0.xlsx
ABCDEFGHIJKLMNOPQRSTUVWXYZAAABAC
1create a random proper data array using this data structurejoining initial datarandom data, consistent with initial datasplitting random data, and adding dates, calc.columns, for a proper consistent data set
2ProductBrandTypeCostPrice/uShopRegionManager=ACLMJOIN(ACLMJOIN(A3:H10,1,5,,-1,"|"),2,,,,"|")=ARANDOM(J3#,50)DateProductBrandTypeCostPrice/uShopRegionManageruSoldTCostRevNetRev
3Prod 3Samsungphone230240Shop CEastJohn SProd 3|Samsung|phone|230|240Shop C|East|John SProd 7|Samsung|laptop|650|780Shop C|East|John S13-09-20Prod 7Samsunglaptop650780Shop CEastJohn S5233800405606760
4Prod 6Samsungtablet170185Shop BWestDavid MProd 6|Samsung|tablet|170|185Shop B|West|David MProd 4|Apple|phone|350|370Shop C|East|John S03-02-21Prod 4Applephone350370Shop CEastJohn S431505015910860
5Prod 4Applephone350370Shop AEastJohn SProd 4|Apple|phone|350|370Shop A|East|John SProd 1|Apple|tablet|280|350Shop D|West|Mike B01-07-21Prod 1Appletablet280350Shop DWestMike B349520119002380
6Prod 1Appletablet280350Shop DWestMike BProd 1|Apple|tablet|280|350Shop D|West|Mike BProd 7|Samsung|laptop|650|780Shop C|East|John S30-06-21Prod 7Samsunglaptop650780Shop CEastJohn S6139650475807930
7Prod 7Samsunglaptop650780Shop ENorthBill TProd 7|Samsung|laptop|650|780Shop E|North|Bill TProd 6|Samsung|tablet|170|185Shop C|East|John S25-11-20Prod 6Samsungtablet170185Shop CEastJohn S1627202960240
8Prod 8Applelaptop420510Shop FSouthSteve JProd 8|Apple|laptop|420|510Shop F|South|Steve JProd 7|Samsung|laptop|650|780Shop E|North|Bill T19-10-20Prod 7Samsunglaptop650780Shop ENorthBill T4931850382206370
9Prod 2HPlaptop520620Prod 2|HP|laptop|520|620Prod 7|Samsung|laptop|650|780Shop C|East|John S01-07-20Prod 7Samsunglaptop650780Shop CEastJohn S89578506942011570
10Prod 5HPdesktop870990Prod 5|HP|desktop|870|990Prod 2|HP|laptop|520|620Shop C|East|John S09-04-21Prod 2HPlaptop520620Shop CEastJohn S199880117801900
11Prod 8|Apple|laptop|420|510Shop D|West|Mike B27-10-20Prod 8Applelaptop420510Shop DWestMike B8033600408007200
12Prod 5|HP|desktop|870|990Shop C|East|John S20-03-21Prod 5HPdesktop870990Shop CEastJohn S5144370504906120
13Prod 1|Apple|tablet|280|350Shop A|East|John S07-05-21Prod 1Appletablet280350Shop AEastJohn S5314840185503710
14other formulas on minisheetProd 5|HP|desktop|870|990Shop E|North|Bill T04-01-21Prod 5HPdesktop870990Shop ENorthBill T5749590564306840
15ACLMJOINProd 7|Samsung|laptop|650|780Shop A|East|John S19-11-20Prod 7Samsunglaptop650780Shop AEastJohn S5334450413406890
16ARANDOMProd 1|Apple|tablet|280|350Shop D|West|Mike B07-12-20Prod 1Appletablet280350Shop DWestMike B339240115502310
17ACMSPLITProd 4|Apple|phone|350|370Shop E|North|Bill T07-12-20Prod 4Applephone350370Shop ENorthBill T5418900199801080
18Prod 4|Apple|phone|350|370Shop E|North|Bill T23-04-21Prod 4Applephone350370Shop ENorthBill T28980010360560
19Prod 8|Apple|laptop|420|510Shop B|West|David M30-06-21Prod 8Applelaptop420510Shop BWestDavid M5523100280504950
20Prod 7|Samsung|laptop|650|780Shop F|South|Steve J04-03-21Prod 7Samsunglaptop650780Shop FSouthSteve J5435100421207020
21Prod 6|Samsung|tablet|170|185Shop C|East|John S24-12-20Prod 6Samsungtablet170185Shop CEastJohn S7011900129501050
22Prod 3|Samsung|phone|230|240Shop F|South|Steve J07-07-20Prod 3Samsungphone230240Shop FSouthSteve J2455205760240
23Prod 4|Apple|phone|350|370Shop D|West|Mike B30-06-21Prod 4Applephone350370Shop DWestMike B6522750240501300
24Prod 5|HP|desktop|870|990Shop D|West|Mike B13-01-21Prod 5HPdesktop870990Shop DWestMike B3227840316803840
25Prod 5|HP|desktop|870|990Shop E|North|Bill T03-03-21Prod 5HPdesktop870990Shop ENorthBill T7766990762309240
26Prod 8|Apple|laptop|420|510Shop C|East|John S06-10-20Prod 8Applelaptop420510Shop CEastJohn S6627720336605940
27Prod 2|HP|laptop|520|620Shop A|East|John S06-12-20Prod 2HPlaptop520620Shop AEastJohn S8946280551808900
28Prod 5|HP|desktop|870|990Shop A|East|John S27-01-21Prod 5HPdesktop870990Shop AEastJohn S7666120752409120
29Prod 1|Apple|tablet|280|350Shop D|West|Mike B03-02-21Prod 1Appletablet280350Shop DWestMike B4211760147002940
30Prod 7|Samsung|laptop|650|780Shop D|West|Mike B24-08-20Prod 7Samsunglaptop650780Shop DWestMike B77500506006010010
31Prod 2|HP|laptop|520|620Shop A|East|John S25-11-20Prod 2HPlaptop520620Shop AEastJohn S8343160514608300
32Prod 2|HP|laptop|520|620Shop B|West|David M27-02-21Prod 2HPlaptop520620Shop BWestDavid M7438480458807400
33Prod 8|Apple|laptop|420|510Shop A|East|John S17-02-21Prod 8Applelaptop420510Shop AEastJohn S6025200306005400
34Prod 2|HP|laptop|520|620Shop B|West|David M04-05-21Prod 2HPlaptop520620Shop BWestDavid M3317160204603300
35Prod 6|Samsung|tablet|170|185Shop C|East|John S07-10-20Prod 6Samsungtablet170185Shop CEastJohn S8213940151701230
36Prod 2|HP|laptop|520|620Shop A|East|John S02-09-20Prod 2HPlaptop520620Shop AEastJohn S3015600186003000
37Prod 7|Samsung|laptop|650|780Shop A|East|John S21-10-20Prod 7Samsunglaptop650780Shop AEastJohn S87565506786011310
38Prod 6|Samsung|tablet|170|185Shop C|East|John S08-05-21Prod 6Samsungtablet170185Shop CEastJohn S3966307215585
39Prod 1|Apple|tablet|280|350Shop F|South|Steve J12-06-21Prod 1Appletablet280350Shop FSouthSteve J27756094501890
40Prod 8|Apple|laptop|420|510Shop B|West|David M21-10-20Prod 8Applelaptop420510Shop BWestDavid M2811760142802520
41Prod 6|Samsung|tablet|170|185Shop E|North|Bill T05-11-20Prod 6Samsungtablet170185Shop ENorthBill T2847605180420
42Prod 8|Apple|laptop|420|510Shop B|West|David M05-09-20Prod 8Applelaptop420510Shop BWestDavid M4619320234604140
43Prod 2|HP|laptop|520|620Shop D|West|Mike B15-11-20Prod 2HPlaptop520620Shop DWestMike B2211440136402200
44Prod 8|Apple|laptop|420|510Shop F|South|Steve J09-08-20Prod 8Applelaptop420510Shop FSouthSteve J5422680275404860
45Prod 8|Apple|laptop|420|510Shop B|West|David M13-09-20Prod 8Applelaptop420510Shop BWestDavid M8937380453908010
46Prod 1|Apple|tablet|280|350Shop C|East|John S01-02-21Prod 1Appletablet280350Shop CEastJohn S5114280178503570
47Prod 8|Apple|laptop|420|510Shop B|West|David M12-09-20Prod 8Applelaptop420510Shop BWestDavid M14588071401260
48Prod 8|Apple|laptop|420|510Shop C|East|John S26-12-20Prod 8Applelaptop420510Shop CEastJohn S218820107101890
49Prod 5|HP|desktop|870|990Shop E|North|Bill T06-12-20Prod 5HPdesktop870990Shop ENorthBill T6253940613807440
50Prod 7|Samsung|laptop|650|780Shop B|West|David M09-12-20Prod 7Samsunglaptop650780Shop BWestDavid M3220800249604160
51Prod 7|Samsung|laptop|650|780Shop F|South|Steve J17-01-21Prod 7Samsunglaptop650780Shop FSouthSteve J85552506630011050
52Prod 2|HP|laptop|520|620Shop D|West|Mike B28-04-21Prod 2HPlaptop520620Shop DWestMike B8946280551808900
53
54=ACLMSPLIT(ACLMSPLIT(M3#,1,"|"),,"|")=RANDARRAY(50,,10,90,1)
55=RANDARRAY(50,,"1-07-20","1-07-21",1)=T3:T52*Y3#
56=Y3#*U3:U52
57=AA3#-Z3#
58
ADVCF data tbl
Cell Formulas
RangeFormula
J2,M2J2=FORMULATEXT(J3)
J3:K10J3=ACLMJOIN(ACLMJOIN(A3:H10,1,5,,-1,"|"),2,,,,"|")
M3:N52M3=ARANDOM(J3#,50)
P3:P52P3=RANDARRAY(50,,"1-07-20","1-07-21",1)
Q3:X52Q3=ACLMSPLIT(ACLMSPLIT(M3#,1,"|"),,"|")
Y3:Y52Y3=RANDARRAY(50,,10,90,1)
Z3:Z52Z3=T3:T52*Y3#
AA3:AA52AA3=Y3#*U3:U52
AB3:AB52AB3=AA3#-Z3#
Q54Q54=FORMULATEXT(Q3)
V54V54=FORMULATEXT(Y3)
P55P55=FORMULATEXT(P3)
Y55Y55=FORMULATEXT(Z3)
Z56Z56=FORMULATEXT(AA3)
AA57AA57=FORMULATEXT(AB3)
Dynamic array formulas.
 

Forum statistics

Threads
1,223,604
Messages
6,173,315
Members
452,510
Latest member
RCan29

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top